python3Packages.lightwave2: init at 0.7.7

This commit is contained in:
Fabian Affolter 2021-12-05 15:59:54 +01:00
parent 2707eaa112
commit 30d18d1889
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "lightwave2";
version = "0.7.7";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-89REmMsZ79OsjhxAuxyTfRKy1+4cYDB9suiZLTXNntA=";
};
propagatedBuildInputs = [
aiohttp
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"lightwave2"
];
meta = with lib; {
description = "Python library to interact with LightWaveRF 2nd Gen lights and switches";
homepage = "https://github.com/bigbadblunt/lightwave2";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -4490,6 +4490,8 @@ in {
lightparam = callPackage ../development/python-modules/lightparam { };
lightwave2 = callPackage ../development/python-modules/lightwave2 { };
lima = callPackage ../development/python-modules/lima { };
limiter= callPackage ../development/python-modules/limiter { };