18 buildPythonPackage rec {
19 pname = "aioguardian";
20 version = "2023.12.0";
23 disabled = pythonOlder "3.10";
25 src = fetchFromGitHub {
28 rev = "refs/tags/${version}";
29 hash = "sha256-7fY8+aAxlDtOBLu8SadY5qiH6+RvxnFpOw1RXTonP2o=";
32 nativeBuildInputs = [ poetry-core ];
34 propagatedBuildInputs = [
50 disabledTestPaths = [ "examples/" ];
52 pythonImportsCheck = [ "aioguardian" ];
55 description = " Python library to interact with Elexa Guardian devices";
57 aioguardian is an asyncio-focused library for interacting with the
58 Guardian line of water valves and sensors from Elexa.
60 homepage = "https://github.com/bachya/aioguardian";
61 changelog = "https://github.com/bachya/aioguardian/releases/tag/${version}";
62 license = with licenses; [ mit ];
63 maintainers = with maintainers; [ fab ];