From 5a82527e06557bb41cfd617c78dd935b806234a6 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 11 Dec 2024 16:39:02 +0100 Subject: [PATCH] python312Packages.aiounifi: 81 -> 81 https://github.com/Kane610/aiounifi/releases/tag/v81 --- pkgs/development/python-modules/aiounifi/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix index 1d325c1eb803..e8e4bf09195c 100644 --- a/pkgs/development/python-modules/aiounifi/default.nix +++ b/pkgs/development/python-modules/aiounifi/default.nix @@ -7,6 +7,7 @@ orjson, pytest-aiohttp, pytest-asyncio, + pytest-cov-stub, pytestCheckHook, pythonOlder, segno, @@ -16,7 +17,7 @@ buildPythonPackage rec { pname = "aiounifi"; - version = "80"; + version = "81"; pyproject = true; disabled = pythonOlder "3.11"; @@ -25,15 +26,13 @@ buildPythonPackage rec { owner = "Kane610"; repo = "aiounifi"; rev = "refs/tags/v${version}"; - hash = "sha256-320ptaKT+6mKUj9y+MvGovp4/XVbYIlDTb9lLXY7c1w="; + hash = "sha256-QuECmv/xWTNsC42JmPlYwN710Pu6L9jNbtOPJsUdM9k="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "setuptools==" "setuptools>=" \ + --replace-fail "setuptools==75.6.0" "setuptools" \ --replace-fail "wheel==" "wheel>=" - - sed -i '/--cov=/d' pyproject.toml ''; build-system = [ setuptools ]; @@ -48,6 +47,7 @@ buildPythonPackage rec { aioresponses pytest-aiohttp pytest-asyncio + pytest-cov-stub pytestCheckHook trustme ];