python3Packages.luxor: init at 0.0.1
This commit is contained in:
parent
54060c0a1f
commit
ad9b07370e
2 changed files with 43 additions and 0 deletions
41
pkgs/development/python-modules/luxor/default.nix
Normal file
41
pkgs/development/python-modules/luxor/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
, pytest-aiohttp
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "luxor";
|
||||||
|
version = "0.0.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "GIwVEOKZAudTu2M3OM4LFVR8e22q52m/AN0anskdmWQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest-aiohttp
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"luxor"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python module to control FX Luminaire controllers";
|
||||||
|
homepage = "https://github.com/pbozeman/luxor";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4579,6 +4579,8 @@ in {
|
||||||
|
|
||||||
luftdaten = callPackage ../development/python-modules/luftdaten { };
|
luftdaten = callPackage ../development/python-modules/luftdaten { };
|
||||||
|
|
||||||
|
luxor = callPackage ../development/python-modules/luxor { };
|
||||||
|
|
||||||
luxtronik = callPackage ../development/python-modules/luxtronik { };
|
luxtronik = callPackage ../development/python-modules/luxtronik { };
|
||||||
|
|
||||||
lupa = callPackage ../development/python-modules/lupa { };
|
lupa = callPackage ../development/python-modules/lupa { };
|
||||||
|
|
Loading…
Reference in a new issue