From 1fa85eef71ecbcbfebc13981af89700602639909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 4 May 2026 21:47:58 -0700 Subject: [PATCH] python3Packages.aiounifi: 89 -> 90 Diff: https://github.com/Kane610/aiounifi/compare/v89...v90 Changelog: https://github.com/Kane610/aiounifi/releases/tag/v90 --- pkgs/development/python-modules/aiounifi/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix index 7f45f74dbd60..a174d203266a 100644 --- a/pkgs/development/python-modules/aiounifi/default.nix +++ b/pkgs/development/python-modules/aiounifi/default.nix @@ -5,6 +5,7 @@ buildPythonPackage, fetchFromGitHub, orjson, + pyotp, pytest-aiohttp, pytest-asyncio, pytest-cov-stub, @@ -17,7 +18,7 @@ buildPythonPackage (finalAttrs: { pname = "aiounifi"; - version = "89"; + version = "90"; pyproject = true; disabled = pythonOlder "3.13"; @@ -26,12 +27,12 @@ buildPythonPackage (finalAttrs: { owner = "Kane610"; repo = "aiounifi"; tag = "v${finalAttrs.version}"; - hash = "sha256-SkvT2rwKbdQkuKunWzp439k4sTTBSLjEtYbR1cHhLKc="; + hash = "sha256-xM2x4SwVav2gsuG0G1hJjg4AcdsuCYf3O1fma++EYow="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "setuptools==82.0.0" "setuptools" \ + --replace-fail "setuptools==82.0.1" "setuptools" \ --replace-fail "wheel==0.46.3" "wheel" ''; @@ -40,6 +41,7 @@ buildPythonPackage (finalAttrs: { dependencies = [ aiohttp orjson + pyotp segno ];