python3Packages.lightwave2: init at 0.7.7
This commit is contained in:
parent
2707eaa112
commit
30d18d1889
37
pkgs/development/python-modules/lightwave2/default.nix
Normal file
37
pkgs/development/python-modules/lightwave2/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user