python3Packages.aqualogic: init at 2.3
This commit is contained in:
parent
5852a21819
commit
1973729771
2 changed files with 33 additions and 0 deletions
31
pkgs/development/python-modules/aqualogic/default.nix
Normal file
31
pkgs/development/python-modules/aqualogic/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pyserial
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aqualogic";
|
||||||
|
version = "2.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "swilson";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0101lni458y88yrw1wri3pz2cn5jlxln03pa3q2pxaybcyklb9qk";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pyserial ];
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "aqualogic" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library to interface with Hayward/Goldline AquaLogic/ProLogic pool controllers";
|
||||||
|
homepage = "https://github.com/swilson/aqualogic";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -410,6 +410,8 @@ in {
|
||||||
|
|
||||||
apsw = callPackage ../development/python-modules/apsw { };
|
apsw = callPackage ../development/python-modules/apsw { };
|
||||||
|
|
||||||
|
aqualogic = callPackage ../development/python-modules/aqualogic { };
|
||||||
|
|
||||||
arabic-reshaper = callPackage ../development/python-modules/arabic-reshaper { };
|
arabic-reshaper = callPackage ../development/python-modules/arabic-reshaper { };
|
||||||
|
|
||||||
archinfo = callPackage ../development/python-modules/archinfo { };
|
archinfo = callPackage ../development/python-modules/archinfo { };
|
||||||
|
|
Loading…
Reference in a new issue