Merge pull request #118767 from fabaff/screenlogicpy
python3Packages.screenlogicpy: init at 0.3.0
This commit is contained in:
commit
33b025702a
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/screenlogicpy/default.nix
Normal file
28
pkgs/development/python-modules/screenlogicpy/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "screenlogicpy";
|
||||||
|
version = "0.3.0";
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0gn2mf2n2g1ffdbijrydgb7dgd60lkvckblx6s86kxlkrp1wqgrq";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Project doesn't publish tests
|
||||||
|
# https://github.com/dieselrabbit/screenlogicpy/issues/8
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "screenlogicpy" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python interface for Pentair Screenlogic devices";
|
||||||
|
homepage = "https://github.com/dieselrabbit/screenlogicpy";
|
||||||
|
license = with licenses; [ gpl3Only ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7540,6 +7540,8 @@ in {
|
||||||
|
|
||||||
screeninfo = callPackage ../development/python-modules/screeninfo { };
|
screeninfo = callPackage ../development/python-modules/screeninfo { };
|
||||||
|
|
||||||
|
screenlogicpy = callPackage ../development/python-modules/screenlogicpy { };
|
||||||
|
|
||||||
scripttest = callPackage ../development/python-modules/scripttest { };
|
scripttest = callPackage ../development/python-modules/scripttest { };
|
||||||
|
|
||||||
scs = callPackage ../development/python-modules/scs { scs = pkgs.scs; };
|
scs = callPackage ../development/python-modules/scs { scs = pkgs.scs; };
|
||||||
|
|
Loading…
Reference in a new issue