mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #159206 from fabaff/lightwave
This commit is contained in:
commit
94247890ed
3 changed files with 35 additions and 1 deletions
32
pkgs/development/python-modules/lightwave/default.nix
Normal file
32
pkgs/development/python-modules/lightwave/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 ];
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue