1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "limitlessled";
5 version = "1.1.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0pd71wxqjvznx10brsj1sgy3420bz7awbzk9jlj422rrdxql754j";
10 };
11
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 };
18}