From bfb2d2f3d92f47c60126087dfd23a8698e1e2b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 4 Sep 2025 00:05:32 +0200 Subject: [PATCH] python313Packages.colormath2: use pytest7 to fix test execution --- pkgs/development/python-modules/colormath2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/colormath2/default.nix b/pkgs/development/python-modules/colormath2/default.nix index 30f081f8cb62..e4175a62e6b4 100644 --- a/pkgs/development/python-modules/colormath2/default.nix +++ b/pkgs/development/python-modules/colormath2/default.nix @@ -5,7 +5,7 @@ setuptools, networkx, numpy, - pytestCheckHook, + pytest7CheckHook, }: buildPythonPackage rec { @@ -27,7 +27,7 @@ buildPythonPackage rec { numpy ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ pytest7CheckHook ]; pythonImportsCheck = [ "colormath2" ];