From 2dabd051a7a910d94bc2a9819dcf0719802056dc Mon Sep 17 00:00:00 2001 From: Sébastien Maret Date: Wed, 17 Jul 2019 12:21:29 +0200 Subject: pythonPackages.pytest-arraydiff: fix infinite recursion --- pkgs/development/python-modules/pytest-arraydiff/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'pkgs/development/python-modules') diff --git a/pkgs/development/python-modules/pytest-arraydiff/default.nix b/pkgs/development/python-modules/pytest-arraydiff/default.nix index 4a59e22d1365..e01d26b530ec 100644 --- a/pkgs/development/python-modules/pytest-arraydiff/default.nix +++ b/pkgs/development/python-modules/pytest-arraydiff/default.nix @@ -22,14 +22,10 @@ buildPythonPackage rec { pytest ]; - checkInputs = [ - pytest - astropy - ]; - - checkPhase = '' - pytest - ''; + # The tests requires astropy, which itself requires + # pytest-arraydiff. This causes an infinite recursion if the tests + # are enabled. + doCheck = false; meta = with lib; { description = "Pytest plugin to help with comparing array output from tests"; -- cgit 1.4.1