python3Packages.aio-ownet: init at 0.0.4

This commit is contained in:
Robert Schütz
2025-11-05 10:01:06 -08:00
parent ae69e30d0b
commit 44ee538806
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
buildPythonPackage,
click,
fetchFromGitHub,
lib,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aio-ownet";
version = "0.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "hacf-fr";
repo = "aio-ownet";
tag = "v${version}";
hash = "sha256-XaulcBrFLu8YsfaYQsZfUBHnw0H5qX6itdgsiW89Ca4=";
};
build-system = [ poetry-core ];
optional-dependencies = {
cli = [ click ];
};
pythonImportsCheck = [ "aio_ownet" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/hacf-fr/aio-ownet/releases/tag/${src.tag}";
description = "Asynchronous OWFS (owserver network protocol) client library";
homepage = "https://github.com/hacf-fr/aio-ownet";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -180,6 +180,8 @@ self: super: with self; {
aio-georss-gdacs = callPackage ../development/python-modules/aio-georss-gdacs { };
aio-ownet = callPackage ../development/python-modules/aio-ownet { };
aio-pika = callPackage ../development/python-modules/aio-pika { };
aioacaia = callPackage ../development/python-modules/aioacaia { };