From 931587160ec826ebe7818f1e5efc49a196b6aaf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 17 Oct 2025 22:33:12 -0700 Subject: [PATCH 1/2] python3Packages.asyncua: use default pytest-asyncio --- pkgs/development/python-modules/asyncua/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/asyncua/default.nix b/pkgs/development/python-modules/asyncua/default.nix index d5d6ecd95907..a02509e9130b 100644 --- a/pkgs/development/python-modules/asyncua/default.nix +++ b/pkgs/development/python-modules/asyncua/default.nix @@ -8,7 +8,7 @@ fetchFromGitHub, hatchling, pyopenssl, - pytest-asyncio_0_21, + pytest-asyncio, pytest-mock, pytestCheckHook, python-dateutil, @@ -56,7 +56,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook - pytest-asyncio_0_21 + pytest-asyncio pytest-mock ]; From 8f6ebd036e8e3a3532df723f5121320944e6feda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 17 Oct 2025 22:34:23 -0700 Subject: [PATCH 2/2] python3Packages.pytest-asyncio_0_21: drop --- pkgs/top-level/python-packages.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5309f911b8ca..fb31006dc940 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14450,16 +14450,6 @@ self: super: with self; { pytest-asyncio_0 = callPackage ../development/python-modules/pytest-asyncio/0.nix { }; - pytest-asyncio_0_21 = pytest-asyncio.overridePythonAttrs (old: rec { - version = "0.21.2"; - src = pkgs.fetchFromGitHub { - owner = "pytest-dev"; - repo = "pytest-asyncio"; - rev = "refs/tags/v${version}"; - hash = "sha256-AVVvdo/CDF9IU6l779sLc7wKz5h3kzMttdDNTPLYxtQ="; - }; - }); - pytest-base-url = callPackage ../development/python-modules/pytest-base-url { }; pytest-bdd = callPackage ../development/python-modules/pytest-bdd { };