File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
development/python-modules/yeelightsunflower Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildPythonPackage ,
4+ fetchPypi ,
5+ setuptools ,
6+ } :
7+
8+ buildPythonPackage rec {
9+ pname = "yeelightsunflower" ;
10+ version = "0.0.10" ;
11+ pyproject = true ;
12+
13+ src = fetchPypi {
14+ inherit pname version ;
15+ hash = "sha256-l4Rl6WSCK68/XBwCndonNu3kePDXfSs/uIXaCkrIT7g==" ;
16+ } ;
17+
18+ build-system = [ setuptools ] ;
19+
20+ # Module has no tests
21+ doCheck = false ;
22+
23+ pythonImportsCheck = [ "yeelightsunflower" ] ;
24+
25+ meta = {
26+ description = "Python package for interacting with Yeelight Sunflower bulbs" ;
27+ homepage = "https://github.com/lindsaymarkward/python-yeelight-sunflower" ;
28+ license = lib . licenses . mit ;
29+ maintainers = [ lib . maintainers . jamiemagee ] ;
30+ } ;
31+ }
Original file line number Diff line number Diff line change @@ -20160,6 +20160,8 @@ self: super: with self; {
2016020160
2016120161 yeelight = callPackage ../development/python-modules/yeelight { };
2016220162
20163+ yeelightsunflower = callPackage ../development/python-modules/yeelightsunflower { };
20164+
2016320165 yfinance = callPackage ../development/python-modules/yfinance { };
2016420166
2016520167 yoda = toPythonModule (pkgs.yoda.override { python3 = python; });
You can’t perform that action at this time.
0 commit comments