pythonPackages.yeelight: init at 0.5.3

This commit is contained in:
nyanloutre 2020-08-30 20:55:35 +02:00 committed by Jonathan Ringer
parent 14de1392aa
commit ca7b509dff
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
3 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchPypi, buildPythonPackage, future, enum-compat }:
buildPythonPackage rec {
pname = "yeelight";
version = "0.5.3";
src = fetchPypi {
inherit pname version;
sha256 = "8d49846f0cede1e312cbcd1d0e44c42073910bbcadb31b87ce2a7d24dea3af38";
};
propagatedBuildInputs = [ future enum-compat ];
meta = with stdenv.lib; {
description = "A Python library for controlling YeeLight RGB bulbs";
homepage = "https://gitlab.com/stavros/python-yeelight/";
license = licenses.asl20;
maintainers = with maintainers; [ nyanloutre ];
};
}

View File

@ -931,7 +931,7 @@
"yamaha_musiccast" = ps: with ps; [ ]; # missing inputs: pymusiccast
"yandex_transport" = ps: with ps; [ ]; # missing inputs: aioymaps
"yandextts" = ps: with ps; [ ];
"yeelight" = ps: with ps; [ aiohttp-cors netdisco zeroconf ]; # missing inputs: yeelight
"yeelight" = ps: with ps; [ aiohttp-cors netdisco yeelight zeroconf ];
"yeelightsunflower" = ps: with ps; [ ]; # missing inputs: yeelightsunflower
"yessssms" = ps: with ps; [ ]; # missing inputs: YesssSMS
"yi" = ps: with ps; [ aioftp ha-ffmpeg ];

View File

@ -7557,6 +7557,8 @@ in {
ydiff = callPackage ../development/python-modules/ydiff { };
yeelight = callPackage ../development/python-modules/yeelight { };
yenc = callPackage ../development/python-modules/yenc { };
yfinance = callPackage ../development/python-modules/yfinance { };