depot/third_party/nixpkgs/pkgs/development/python-modules/aqualogic/default.nix
Default email 3b21d1e521 Project import generated by Copybara.
GitOrigin-RevId: 23cd13167a1432550e48734079c2ffeeb441fb96
2021-07-15 00:03:04 +02:00

43 lines
898 B
Nix

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pyserial
, pytestCheckHook
, websockets
}:
buildPythonPackage rec {
pname = "aqualogic";
version = "3.3";
src = fetchFromGitHub {
owner = "swilson";
repo = pname;
rev = version;
sha256 = "sha256-6YvkSUtBc3Nl/Ap3LjU0IKY2bE4k86XdSoLo+/c8dDs=";
};
propagatedBuildInputs = [
pyserial
websockets
];
checkInputs = [
aiohttp
pytestCheckHook
];
# With 3.3 the event loop is not terminated after the first test
# https://github.com/swilson/aqualogic/issues/9
doCheck = false;
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 ];
};
}