python312Packages.aioacaia: init at 0.1.9
Async implementation of pyacaia https://github.com/zweckj/aioacaia
This commit is contained in:
parent
9ef587a977
commit
b4d11602b8
40
pkgs/development/python-modules/aioacaia/default.nix
Normal file
40
pkgs/development/python-modules/aioacaia/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user