Merge pull request #159206 from fabaff/lightwave

This commit is contained in:
Martin Weinelt 2022-02-11 12:18:03 +01:00 committed by GitHub
commit 94247890ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 1 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "lightwave";
version = "0.20";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-jhffMDhgQ257ZQxvidiRgBSnZvzLJFKNU2NZ8AyGTGc=";
};
pythonImportsCheck = [
"lightwave"
];
# Requires phyiscal hardware
doCheck = false;
meta = with lib; {
description = "Module for interacting with LightwaveRF hubs";
homepage = "https://github.com/GeoffAtHome/lightwave";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -464,7 +464,7 @@
"lifx" = ps: with ps; [ aiolifx aiolifx-effects ];
"lifx_cloud" = ps: with ps; [ ];
"light" = ps: with ps; [ ];
"lightwave" = ps: with ps; [ ]; # missing inputs: lightwave
"lightwave" = ps: with ps; [ lightwave ];
"limitlessled" = ps: with ps; [ limitlessled ];
"linksys_smart" = ps: with ps; [ ];
"linode" = ps: with ps; [ linode-api ];

View file

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