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

Configure Feed

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

python3Packages.aiounifi: 86 -> 87

Diff: https://github.com/Kane610/aiounifi/compare/v86...v87

Changelog: https://github.com/Kane610/aiounifi/releases/tag/v87

+3 -5
+3 -5
pkgs/development/python-modules/aiounifi/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "aiounifi"; 20 - version = "86"; 20 + version = "87"; 21 21 pyproject = true; 22 22 23 - disabled = pythonOlder "3.11"; 23 + disabled = pythonOlder "3.13"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "Kane610"; 27 27 repo = "aiounifi"; 28 28 tag = "v${version}"; 29 - hash = "sha256-9SnNWJNfG0Z+XkZtth6yDRnPf0OiAHmiyTI0WQN+2SY="; 29 + hash = "sha256-+aObnX82erFXAdQ5hdj/ebMj9Xm5ZCooprt+UensDpM="; 30 30 }; 31 31 32 32 postPatch = '' ··· 51 51 pytestCheckHook 52 52 trustme 53 53 ]; 54 - 55 - pytestFlags = [ "--asyncio-mode=auto" ]; 56 54 57 55 pythonImportsCheck = [ "aiounifi" ]; 58 56