python3Packages.luxor: init at 0.0.1

This commit is contained in:
Fabian Affolter 2021-12-03 22:05:11 +01:00
parent 54060c0a1f
commit ad9b07370e
2 changed files with 43 additions and 0 deletions

View 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 ];
};
}

View file

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