python3Packages.lightwave: init at 0.20

This commit is contained in:
Fabian Affolter 2022-02-11 12:01:45 +01:00
parent 7434084278
commit 4720f19cc2
2 changed files with 34 additions and 0 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

@ -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 { };