python3Packages.aiocentriconnect: init at 0.2.3
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user