pythonPackages.pyscss: disable broken checkPhase

This commit is contained in:
Julien Moutinho 2021-03-04 23:37:17 +01:00
parent 4c42246cf9
commit 0090fbbda5

View file

@ -26,6 +26,9 @@ buildPythonPackage rec {
++ (lib.optionals (pythonOlder "3.4") [ enum34 pathlib ])
++ (lib.optionals (pythonOlder "2.7") [ ordereddict ]);
# Test suite is broken.
# See https://github.com/Kronuz/pyScss/issues/415
doCheck = false;
checkPhase = ''
py.test
'';