mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3Packages.lightwave: init at 0.20
This commit is contained in:
parent
7434084278
commit
4720f19cc2
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4680,6 +4680,8 @@ in {
|
|||||||
|
|
||||||
lightparam = callPackage ../development/python-modules/lightparam { };
|
lightparam = callPackage ../development/python-modules/lightparam { };
|
||||||
|
|
||||||
|
lightwave = callPackage ../development/python-modules/lightwave { };
|
||||||
|
|
||||||
lightwave2 = callPackage ../development/python-modules/lightwave2 { };
|
lightwave2 = callPackage ../development/python-modules/lightwave2 { };
|
||||||
|
|
||||||
lima = callPackage ../development/python-modules/lima { };
|
lima = callPackage ../development/python-modules/lima { };
|
||||||
|
Loading…
Reference in New Issue
Block a user