python313Packages.aioacaia: 0.1.16 -> 0.1.17

Changelog: https://github.com/zweckj/aioacaia/releases/tag/v0.1.17
This commit is contained in:
Fabian Affolter
2025-09-26 12:24:55 +02:00
parent 82e86cb610
commit a36e45ddcf
@@ -1,6 +1,7 @@
{
lib,
bleak,
bleak-retry-connector,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
@@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "aioacaia";
version = "0.1.16";
version = "0.1.17";
pyproject = true;
disabled = pythonOlder "3.12";
@@ -18,12 +19,15 @@ buildPythonPackage rec {
owner = "zweckj";
repo = "aioacaia";
tag = "v${version}";
hash = "sha256-7b5ZIrChMVPGREg7M+O8m2RDJGKgdTcEcGpTF6KBy1k=";
hash = "sha256-y9NSHiB66ICR+qJcLOdddnkm+f5hd9Zbqamr1UCzdlk=";
};
build-system = [ setuptools ];
dependencies = [ bleak ];
dependencies = [
bleak
bleak-retry-connector
];
# Module only has a homebrew tests
doCheck = false;
@@ -33,7 +37,7 @@ buildPythonPackage rec {
meta = {
description = "Async implementation of pyacaia";
homepage = "https://github.com/zweckj/aioacaia";
changelog = "https://github.com/zweckj/aioacaia/releases/tag/v${version}";
changelog = "https://github.com/zweckj/aioacaia/releases/tag/${src.tag}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
};