summary refs log tree commit diff
path: root/pkgs/development/python-modules/limitlessled/default.nix
blob: 6d12f6d51496dc8214650ea6f6ba8389cc382079 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
}