Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyhomeworks / default.nix
blob085107c4ad26a268fe4fb9e75693a0471daf738f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "pyhomeworks";
10   version = "0.0.6";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "Eqbm8274B2hBuF+mREe8lqGhpzZExPJ29jzvwB5RNR8=";
18   };
20   # Project has no real tests
21   doCheck = false;
23   pythonImportsCheck = [
24     "pyhomeworks"
25   ];
27   meta = with lib; {
28     description = "Python interface to Lutron Homeworks Series 4/8";
29     homepage = "https://github.com/dubnom/pyhomeworks";
30     license = licenses.mit;
31     maintainers = with maintainers; [ fab ];
32   };