lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

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