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 ];