depot/third_party/nixpkgs/pkgs/development/python-modules/aioguardian/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

65 lines
1.3 KiB
Nix

{
lib,
aiohttp,
async-timeout,
asyncio-dgram,
buildPythonPackage,
certifi,
docutils,
fetchFromGitHub,
poetry-core,
pytest-aiohttp,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
voluptuous,
}:
buildPythonPackage rec {
pname = "aioguardian";
version = "2023.12.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "bachya";
repo = "aioguardian";
rev = "refs/tags/${version}";
hash = "sha256-7fY8+aAxlDtOBLu8SadY5qiH6+RvxnFpOw1RXTonP2o=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
async-timeout
asyncio-dgram
certifi
docutils
voluptuous
];
nativeCheckInputs = [
asyncio-dgram
pytest-aiohttp
pytest-asyncio
pytestCheckHook
];
disabledTestPaths = [ "examples/" ];
pythonImportsCheck = [ "aioguardian" ];
meta = with lib; {
description = " Python library to interact with Elexa Guardian devices";
longDescription = ''
aioguardian is an asyncio-focused library for interacting with the
Guardian line of water valves and sensors from Elexa.
'';
homepage = "https://github.com/bachya/aioguardian";
changelog = "https://github.com/bachya/aioguardian/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}