From 247418cdbcd736add34e1693daa72a5bad73d81f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 25 Jul 2022 12:55:09 +0200 Subject: [PATCH] python3Packages.line_profiler: use pytestCheckHook --- pkgs/development/python-modules/line_profiler/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/line_profiler/default.nix b/pkgs/development/python-modules/line_profiler/default.nix index ba92bf09e0b5..cafd6d311463 100644 --- a/pkgs/development/python-modules/line_profiler/default.nix +++ b/pkgs/development/python-modules/line_profiler/default.nix @@ -8,6 +8,7 @@ , scikit-build , cmake , pythonOlder +, pytestCheckHook }: buildPythonPackage rec { @@ -33,7 +34,7 @@ buildPythonPackage rec { ]; checkInputs = [ - ipython + pytestCheckHook ]; dontUseCmakeConfigure = true;