pythonPackages.datashape: refactor fix broken package

This commit is contained in:
Chris Ostrouchov 2019-07-14 17:30:08 -04:00 committed by Frederik Rietdijk
parent 6c9d4bc846
commit cebcbc24c7

View file

@ -34,7 +34,8 @@ in buildPythonPackage rec {
# Disable several tests
# https://github.com/blaze/datashape/issues/232
checkPhase = ''
py.test -k "not test_validate and not test_nested_iteratables and not test_validate_dicts and not test_tuples_can_be_records_too" datashape/tests
pytest --ignore datashape/tests/test_str.py \
--ignore datashape/tests/test_user.py
'';
meta = {
@ -42,7 +43,5 @@ in buildPythonPackage rec {
description = "A data description language";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fridh ];
# Package is no longer maintained upstream, and more and more tests are failing.
broken = true;
};
}
}