From 9358a152d8281821c8d30fcd1d62666d3235053e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 24 May 2019 20:01:00 -0500 Subject: [PATCH] pythonPackages.wcwidth: disable test To prevent infinite recursion with pytest --- pkgs/development/python-modules/wcwidth/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/wcwidth/default.nix b/pkgs/development/python-modules/wcwidth/default.nix index 861d5bcae21e..39ce62ca47c7 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 '';