1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #119298 from fabaff/bump-yeelight

This commit is contained in:
Martin Weinelt 2021-04-13 14:34:51 +02:00 committed by GitHub
commit c7695f95d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 12 deletions

View file

@ -1,39 +1,39 @@
{ lib
, fetchgit
, buildPythonPackage
, pythonOlder
, enum-compat
, fetchFromGitLab
, future
, ifaddr
, mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "yeelight";
version = "0.5.4";
version = "0.6.0";
disabled = pythonOlder "3.4";
src = fetchgit {
url = "https://gitlab.com/stavros/python-yeelight.git";
rev = "119faeff0d4f9de8c7f6d0580bdecc1c79bcdaea"; # v0.5.4 wasn't tagged
sha256 = "0j2c5pzd3kny7ghr9q7xn9vs8dffvyzz5igaavvvd04w7aph29sy";
src = fetchFromGitLab {
owner = "stavros";
repo = "python-yeelight";
rev = "v${version}";
sha256 = "0yycc2pdqaa9y46jycvm0p6braps7ljg2vvljngdqj2l1a2jmv7x";
};
propagatedBuildInputs = [
future
ifaddr
] ++ lib.optional (pythonOlder "3.4") enum-compat;
];
checkInputs = [
pytestCheckHook
] ++ lib.optional (pythonOlder "3.3") mock;
];
pytestFlagsArray = [ "yeelight/tests.py" ];
pythonImportsCheck = [ "yeelight" ];
meta = with lib; {
description = "A Python library for controlling YeeLight RGB bulbs";
description = "Python library for controlling YeeLight RGB bulbs";
homepage = "https://gitlab.com/stavros/python-yeelight/";
license = licenses.asl20;
maintainers = with maintainers; [ nyanloutre ];

View file

@ -372,6 +372,7 @@ in with py.pkgs; buildPythonApplication rec {
"wled"
"workday"
"worldclock"
"yeelight"
"zeroconf"
"zha"
"zone"