Files
nixpkgs/pkgs/development/python-modules/aqualogic/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

44 lines
934 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pyserial,
pytestCheckHook,
websockets,
}:
buildPythonPackage rec {
pname = "aqualogic";
version = "3.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "swilson";
repo = "aqualogic";
rev = version;
hash = "sha256-hBg02Wypd+MyqM2SUD53djhm5OMP2QAmsp8Stf+UT2c=";
};
propagatedBuildInputs = [
aiohttp
pyserial
websockets
];
nativeCheckInputs = [ pytestCheckHook ];
# With 3.4 the event loop is not terminated after the first test
# https://github.com/swilson/aqualogic/issues/9
doCheck = false;
pythonImportsCheck = [ "aqualogic" ];
meta = {
description = "Python library to interface with Hayward/Goldline AquaLogic/ProLogic pool controllers";
homepage = "https://github.com/swilson/aqualogic";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}