lol

python313Packages.aiounifi: 81 -> 83

Diff: https://github.com/Kane610/aiounifi/compare/refs/tags/v81...v83

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

+3 -3
+3 -3
pkgs/development/python-modules/aiounifi/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "aiounifi"; 20 - version = "81"; 20 + version = "83"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.11"; ··· 26 26 owner = "Kane610"; 27 27 repo = "aiounifi"; 28 28 tag = "v${version}"; 29 - hash = "sha256-QuECmv/xWTNsC42JmPlYwN710Pu6L9jNbtOPJsUdM9k="; 29 + hash = "sha256-xWmSrjdlvpPlWALqABwNRxgG+FzOZBj8kF0AZsY7l5Q="; 30 30 }; 31 31 32 32 postPatch = '' 33 33 substituteInPlace pyproject.toml \ 34 - --replace-fail "setuptools==75.6.0" "setuptools" \ 34 + --replace-fail "setuptools==75.8.2" "setuptools" \ 35 35 --replace-fail "wheel==" "wheel>=" 36 36 ''; 37 37