mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python3Packages.pyhomeworks: init at 0.0.6
This commit is contained in:
parent
54060c0a1f
commit
c9d0f80597
33
pkgs/development/python-modules/pyhomeworks/default.nix
Normal file
33
pkgs/development/python-modules/pyhomeworks/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user