summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyexcel-xls/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyexcel-xls/default.nix')
-rw-r--r--pkgs/development/python-modules/pyexcel-xls/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyexcel-xls/default.nix b/pkgs/development/python-modules/pyexcel-xls/default.nix
index 7e09a21e3627..29d6df409a60 100644
--- a/pkgs/development/python-modules/pyexcel-xls/default.nix
+++ b/pkgs/development/python-modules/pyexcel-xls/default.nix
@@ -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";