From 164283b8bdffe06aecb72aeaf828854da611f3a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 6 Jan 2026 13:33:40 -0800 Subject: [PATCH] python3Packages.aiohomekit: use latest pytest-asyncio --- pkgs/development/python-modules/aiohomekit/default.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/aiohomekit/default.nix b/pkgs/development/python-modules/aiohomekit/default.nix index 949805859e10..32a2d917daa5 100644 --- a/pkgs/development/python-modules/aiohomekit/default.nix +++ b/pkgs/development/python-modules/aiohomekit/default.nix @@ -13,10 +13,8 @@ fetchFromGitHub, orjson, poetry-core, - pytest-asyncio_0, pytest-aiohttp, pytestCheckHook, - pythonOlder, zeroconf, }: @@ -25,8 +23,6 @@ buildPythonPackage rec { version = "3.2.20"; pyproject = true; - disabled = pythonOlder "3.10"; - src = fetchFromGitHub { owner = "Jc2k"; repo = "aiohomekit"; @@ -51,7 +47,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ - (pytest-aiohttp.override { pytest-asyncio = pytest-asyncio_0; }) + pytest-aiohttp pytestCheckHook ];