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