python3Packages.aiocentriconnect: init at 0.2.3

This commit is contained in:
Jamie Magee
2026-06-06 19:43:15 -07:00
parent 92840095e6
commit 20affa4769
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
async-timeout,
backoff,
aresponses,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "aiocentriconnect";
version = "0.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "gresrun";
repo = "aiocentriconnect";
tag = "v${finalAttrs.version}";
hash = "sha256-CBCD5JMUBD0NpkUVIaCXdsbKYgucELs11Pk9z0YufQw=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
async-timeout
backoff
];
nativeCheckInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "aiocentriconnect" ];
meta = {
description = "Asynchronous Python client for CentriConnect/MyPropane API";
homepage = "https://github.com/gresrun/aiocentriconnect";
changelog = "https://github.com/gresrun/aiocentriconnect/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
})
+2
View File
@@ -246,6 +246,8 @@ self: super: with self; {
aiocache = callPackage ../development/python-modules/aiocache { };
aiocentriconnect = callPackage ../development/python-modules/aiocentriconnect { };
aiocmd = callPackage ../development/python-modules/aiocmd { };
aiocoap = callPackage ../development/python-modules/aiocoap { };