about summary refs log tree commit diff
path: root/pkgs/development/python-modules/limitlessled
diff options
context:
space:
mode:
authorStefan Wiehler <me@sephalon.net>2019-01-26 14:50:46 +0100
committerStefan Wiehler <me@sephalon.net>2019-01-26 15:02:17 +0100
commit3e0088e68f6185dce82539eb038ff10dd0c33c33 (patch)
tree6a935283add883897d517b778a2eab798b7e0474 /pkgs/development/python-modules/limitlessled
parent249eccb2761c2ba1038dd22a72cd176fc6cb5d44 (diff)
pythonPackages.limitlessled: init at 1.1.3
Diffstat (limited to 'pkgs/development/python-modules/limitlessled')
-rw-r--r--pkgs/development/python-modules/limitlessled/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/limitlessled/default.nix b/pkgs/development/python-modules/limitlessled/default.nix
new file mode 100644
index 0000000000000..c2029aa6d6bdd
--- /dev/null
+++ b/pkgs/development/python-modules/limitlessled/default.nix
@@ -0,0 +1,18 @@
+{ lib, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "limitlessled";
+  version = "1.1.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0pd71wxqjvznx10brsj1sgy3420bz7awbzk9jlj422rrdxql754j";
+  };
+
+  meta = with lib; {
+    description = "Control LimitlessLED products";
+    homepage = https://github.com/happyleavesaoc/python-limitlessled/;
+    license = licenses.mit;
+    maintainers = with maintainers; [ sephalon ];
+  };
+}