lol

pythonPackages.pynanoleaf: init at 0.0.5

authored by

Marco Orovecchia and committed by
Jon
6fcf77e8 376c25ab

+32 -1
+29
pkgs/development/python-modules/pynanoleaf/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, isPy3k, requests }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pynanoleaf"; 5 + version = "0.0.5"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "2ced000e3c37f4e2ce0ea177d924af71c97007de9e4fd0ef37dcd7b4a6d1b622"; 10 + }; 11 + 12 + disabled = !isPy3k; 13 + 14 + propagatedBuildInputs = [ requests ]; 15 + 16 + # pynanoleaf does not contain tests 17 + doCheck = false; 18 + 19 + pythonImportsCheck = [ 20 + "pynanoleaf" 21 + ]; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/Oro/pynanoleaf"; 25 + description = "A Python3 wrapper for the Nanoleaf API, capable of controlling both Nanoleaf Aurora and Nanoleaf Canvas"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ oro ]; 28 + }; 29 + }
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 500 500 "n26" = ps: with ps; [ ]; # missing inputs: n26 501 501 "nad" = ps: with ps; [ ]; # missing inputs: nad_receiver 502 502 "namecheapdns" = ps: with ps; [ defusedxml]; 503 - "nanoleaf" = ps: with ps; [ ]; # missing inputs: pynanoleaf 503 + "nanoleaf" = ps: with ps; [ pynanoleaf]; 504 504 "neato" = ps: with ps; [ pybotvac]; 505 505 "nederlandse_spoorwegen" = ps: with ps; [ ]; # missing inputs: nsapi 506 506 "nello" = ps: with ps; [ ]; # missing inputs: pynello
+2
pkgs/top-level/python-packages.nix
··· 1214 1214 1215 1215 pymsgbox = callPackage ../development/python-modules/pymsgbox { }; 1216 1216 1217 + pynanoleaf = callPackage ../development/python-modules/pynanoleaf { }; 1218 + 1217 1219 pynisher = callPackage ../development/python-modules/pynisher { }; 1218 1220 1219 1221 pyparser = callPackage ../development/python-modules/pyparser { };