linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / screenlogicpy / default.nix
blob100c487acee6a95a0d25d27a0de991c61f6f97af
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "screenlogicpy";
9   version = "0.3.0";
10   disabled = pythonOlder "3.6";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0gn2mf2n2g1ffdbijrydgb7dgd60lkvckblx6s86kxlkrp1wqgrq";
15   };
17   # Project doesn't publish tests
18   # https://github.com/dieselrabbit/screenlogicpy/issues/8
19   doCheck = false;
20   pythonImportsCheck = [ "screenlogicpy" ];
22   meta = with lib; {
23     description = "Python interface for Pentair Screenlogic devices";
24     homepage = "https://github.com/dieselrabbit/screenlogicpy";
25     license = with licenses; [ gpl3Only ];
26     maintainers = with maintainers; [ fab ];
27   };