about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wcwidth
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-05-24 20:01:00 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-06-18 11:11:16 +0200
commit9358a152d8281821c8d30fcd1d62666d3235053e (patch)
treeed758176c49dd975c5c5136911df824dabd5a139 /pkgs/development/python-modules/wcwidth
parentaad6f1ca903a82be5b0a5f0d267b3abd801834ef (diff)
pythonPackages.wcwidth: disable test
To prevent infinite recursion with pytest
Diffstat (limited to 'pkgs/development/python-modules/wcwidth')
-rw-r--r--pkgs/development/python-modules/wcwidth/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/wcwidth/default.nix b/pkgs/development/python-modules/wcwidth/default.nix
index 861d5bcae21e6..39ce62ca47c79 100644
--- a/pkgs/development/python-modules/wcwidth/default.nix
+++ b/pkgs/development/python-modules/wcwidth/default.nix
@@ -11,6 +11,9 @@ buildPythonPackage rec {
 
   checkInputs = [ pytest ];
 
+  # To prevent infinite recursion with pytest
+  doCheck = false;
+
   checkPhase = ''
     pytest
   '';