My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/limitlessled/default.nix

18 lines
466 B

{ 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 ];
};
}