python312Packages.aioacaia: init at 0.1.9 (#359461)

This commit is contained in:
Fabian Affolter 2024-11-28 08:38:27 +01:00 committed by GitHub
commit 8a30b22d0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 { };