pythonPackages.wcwidth: disable test

To prevent infinite recursion with pytest
This commit is contained in:
Mario Rodas 2019-05-24 20:01:00 -05:00 committed by Frederik Rietdijk
parent aad6f1ca90
commit 9358a152d8

View File

@ -11,6 +11,9 @@ buildPythonPackage rec {
checkInputs = [ pytest ];
# To prevent infinite recursion with pytest
doCheck = false;
checkPhase = ''
pytest
'';