From 107d4142b92e51afcf041bbefe19730dccd007b6 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 1 Feb 2026 15:15:38 +0100 Subject: [PATCH] python3Packages.pyspcwebgw: pin to pytest 8.3 Sets a mark on a fixture, which is unsupported in pytest 9. --- pkgs/development/python-modules/pyspcwebgw/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyspcwebgw/default.nix b/pkgs/development/python-modules/pyspcwebgw/default.nix index 8b3439db6a3e..d60ca74c597c 100644 --- a/pkgs/development/python-modules/pyspcwebgw/default.nix +++ b/pkgs/development/python-modules/pyspcwebgw/default.nix @@ -8,7 +8,7 @@ fetchpatch, poetry-core, pytest-asyncio, - pytestCheckHook, + pytest8_3CheckHook, }: buildPythonPackage rec { @@ -42,7 +42,7 @@ buildPythonPackage rec { nativeCheckInputs = [ aioresponses pytest-asyncio - pytestCheckHook + pytest8_3CheckHook ]; pythonImportsCheck = [ "pyspcwebgw" ];