about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-arraydiff/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pytest-arraydiff/default.nix')
-rw-r--r--pkgs/development/python-modules/pytest-arraydiff/default.nix12
1 files changed, 4 insertions, 8 deletions
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";