python313Packages.aioacaia: 0.1.16 -> 0.1.17

Changelog: https://github.com/zweckj/aioacaia/releases/tag/v0.1.17

Changed files
+8 -4
pkgs
development
python-modules
aioacaia
+8 -4
pkgs/development/python-modules/aioacaia/default.nix
···
{
lib,
bleak,
+
bleak-retry-connector,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
···
buildPythonPackage rec {
pname = "aioacaia";
-
version = "0.1.16";
+
version = "0.1.17";
pyproject = true;
disabled = pythonOlder "3.12";
···
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;
···
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 ];
};