Skip to content

Commit

Permalink
pythonPackages.pynanoleaf: init at 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Oro authored and Jon committed Apr 10, 2020
1 parent 376c25a commit 6fcf77e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
29 changes: 29 additions & 0 deletions pkgs/development/python-modules/pynanoleaf/default.nix
@@ -0,0 +1,29 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, requests }:

buildPythonPackage rec {
pname = "pynanoleaf";
version = "0.0.5";

src = fetchPypi {
inherit pname version;
sha256 = "2ced000e3c37f4e2ce0ea177d924af71c97007de9e4fd0ef37dcd7b4a6d1b622";
};

disabled = !isPy3k;

propagatedBuildInputs = [ requests ];

# pynanoleaf does not contain tests
doCheck = false;

pythonImportsCheck = [
"pynanoleaf"
];

meta = with lib; {
homepage = "https://github.com/Oro/pynanoleaf";
description = "A Python3 wrapper for the Nanoleaf API, capable of controlling both Nanoleaf Aurora and Nanoleaf Canvas";
license = licenses.mit;
maintainers = with maintainers; [ oro ];
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/home-assistant/component-packages.nix
Expand Up @@ -500,7 +500,7 @@
"n26" = ps: with ps; [ ]; # missing inputs: n26
"nad" = ps: with ps; [ ]; # missing inputs: nad_receiver
"namecheapdns" = ps: with ps; [ defusedxml];
"nanoleaf" = ps: with ps; [ ]; # missing inputs: pynanoleaf
"nanoleaf" = ps: with ps; [ pynanoleaf];
"neato" = ps: with ps; [ pybotvac];
"nederlandse_spoorwegen" = ps: with ps; [ ]; # missing inputs: nsapi
"nello" = ps: with ps; [ ]; # missing inputs: pynello
Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -1214,6 +1214,8 @@ in {

pymsgbox = callPackage ../development/python-modules/pymsgbox { };

pynanoleaf = callPackage ../development/python-modules/pynanoleaf { };

pynisher = callPackage ../development/python-modules/pynisher { };

pyparser = callPackage ../development/python-modules/pyparser { };
Expand Down

0 comments on commit 6fcf77e

Please sign in to comment.