nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python313Packages.aioacaia: 0.1.16 -> 0.1.17

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

+8 -4
+8 -4
pkgs/development/python-modules/aioacaia/default.nix
··· 1 1 { 2 2 lib, 3 3 bleak, 4 + bleak-retry-connector, 4 5 buildPythonPackage, 5 6 fetchFromGitHub, 6 7 pythonOlder, ··· 10 9 11 10 buildPythonPackage rec { 12 11 pname = "aioacaia"; 13 - version = "0.1.16"; 12 + version = "0.1.17"; 14 13 pyproject = true; 15 14 16 15 disabled = pythonOlder "3.12"; ··· 19 18 owner = "zweckj"; 20 19 repo = "aioacaia"; 21 20 tag = "v${version}"; 22 - hash = "sha256-7b5ZIrChMVPGREg7M+O8m2RDJGKgdTcEcGpTF6KBy1k="; 21 + hash = "sha256-y9NSHiB66ICR+qJcLOdddnkm+f5hd9Zbqamr1UCzdlk="; 23 22 }; 24 23 25 24 build-system = [ setuptools ]; 26 25 27 - dependencies = [ bleak ]; 26 + dependencies = [ 27 + bleak 28 + bleak-retry-connector 29 + ]; 28 30 29 31 # Module only has a homebrew tests 30 32 doCheck = false; ··· 37 33 meta = { 38 34 description = "Async implementation of pyacaia"; 39 35 homepage = "https://github.com/zweckj/aioacaia"; 40 - changelog = "https://github.com/zweckj/aioacaia/releases/tag/v${version}"; 36 + changelog = "https://github.com/zweckj/aioacaia/releases/tag/${src.tag}"; 41 37 license = lib.licenses.gpl3Only; 42 38 maintainers = with lib.maintainers; [ fab ]; 43 39 };