Merge pull request #122311 from DavHau/zhf-pyexcel-xls

python3Packages.pyexcel-xls: unbreak
This commit is contained in:
Jan Tojnar 2021-05-09 13:17:32 +02:00 committed by GitHub
commit fc75c442ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,11 @@ buildPythonPackage rec {
mock
];
checkPhase = "nosetests";
postPatch = ''
substituteInPlace setup.py --replace "xlrd<2" "xlrd<3"
'';
checkPhase = "nosetests --exclude test_issue_151";
meta = {
description = "A wrapper library to read, manipulate and write data in xls using xlrd and xlwt";