ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / limitlessled / default.nix
blob6d12f6d51496dc8214650ea6f6ba8389cc382079
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "limitlessled";
5   version = "1.1.3";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0pd71wxqjvznx10brsj1sgy3420bz7awbzk9jlj422rrdxql754j";
10   };
12   meta = with lib; {
13     description = "Control LimitlessLED products";
14     homepage = "https://github.com/happyleavesaoc/python-limitlessled/";
15     license = licenses.mit;
16     maintainers = with maintainers; [ sephalon ];
17   };