python312Packages.aioacaia: init at 0.1.9

Async implementation of pyacaia

https://github.com/zweckj/aioacaia
This commit is contained in:
Fabian Affolter 2024-11-27 00:17:16 +01:00
parent 9ef587a977
commit b4d11602b8
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{
lib,
bleak,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aioacaia";
version = "0.1.9";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "zweckj";
repo = "aioacaia";
rev = "refs/tags/v${version}";
hash = "sha256-cD9NGGRDsFalrcmaTGPOjkh0+KbPW/MyBq79RNQZQ64=";
};
build-system = [ setuptools ];
dependencies = [ bleak ];
# Module only has a homebrew tests
doCheck = false;
pythonImportsCheck = [ "aioacaia" ];
meta = {
description = "Async implementation of pyacaia";
homepage = "https://github.com/zweckj/aioacaia";
changelog = "https://github.com/zweckj/aioacaia/releases/tag/v${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
};
}

View File

@ -151,6 +151,8 @@ self: super: with self; {
aio-pika = callPackage ../development/python-modules/aio-pika { };
aioacaia = callPackage ../development/python-modules/aioacaia { };
aioairzone = callPackage ../development/python-modules/aioairzone { };
aioairzone-cloud = callPackage ../development/python-modules/aioairzone-cloud { };