python3Packages.pyhomeworks: init at 0.0.6

This commit is contained in:
Fabian Affolter 2021-12-03 21:51:21 +01:00
parent 54060c0a1f
commit c9d0f80597
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyhomeworks";
version = "0.0.6";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "Eqbm8274B2hBuF+mREe8lqGhpzZExPJ29jzvwB5RNR8=";
};
# Project has no real tests
doCheck = false;
pythonImportsCheck = [
"pyhomeworks"
];
meta = with lib; {
description = "Python interface to Lutron Homeworks Series 4/8";
homepage = "https://github.com/dubnom/pyhomeworks";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6610,6 +6610,8 @@ in {
pyhomepilot = callPackage ../development/python-modules/pyhomepilot { };
pyhomeworks = callPackage ../development/python-modules/pyhomeworks { };
pyhs100 = callPackage ../development/python-modules/pyhs100 { };
pyi2cflash = callPackage ../development/python-modules/pyi2cflash { };