3
0
Fork 0
forked from mirrors/nixpkgs

pyexcel-xls: 0.5.8 → 0.5.9

This commit is contained in:
Jan Tojnar 2020-08-30 01:13:18 +02:00
parent cc8c10de30
commit 5cfd8275a6
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -5,15 +5,17 @@
, xlrd
, xlwt
, nose
, pyexcel
, mock
}:
buildPythonPackage rec {
pname = "pyexcel-xls";
version = "0.5.8";
version = "0.5.9";
src = fetchPypi {
inherit pname version;
sha256 = "LTPrS9ja37jHO1zMaiONZbORTomnVTsfObk5exfL5AI=";
sha256 = "1Wyt6gpmBoRFaXbZgFJVTTu+KnivxfmpHIaR9iZghVU=";
};
propagatedBuildInputs = [
@ -22,11 +24,13 @@ buildPythonPackage rec {
xlwt
];
# Tests are not included in the archive.
# https://github.com/pyexcel/pyexcel-xls/issues/35
doCheck = false;
checkInputs = [
nose
pyexcel
mock
];
pythonImportsCheck = [ "pyexcel_xls" ];
checkPhase = "nosetests";
meta = {
description = "A wrapper library to read, manipulate and write data in xls using xlrd and xlwt";