From 0d20abd4e4b488671914be3a46b9c727f5f24153 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 9 Mar 2024 13:11:35 +0100 Subject: [PATCH] python311Packages.ipython: test with pytest_7 The ipython test suite regressed with pytest 8.0.2, so we're giving it so more time to adapt. --- pkgs/development/python-modules/ipython/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix index ecb26f25474d..7dacc7e2aa3c 100644 --- a/pkgs/development/python-modules/ipython/default.nix +++ b/pkgs/development/python-modules/ipython/default.nix @@ -23,6 +23,7 @@ , pickleshare , pytest-asyncio , pytestCheckHook +, pytest_7 , testpath }: @@ -71,7 +72,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pickleshare pytest-asyncio - pytestCheckHook + (pytestCheckHook.override { pytest = pytest_7; }) testpath ];