python3.pkgs.pyexcel-xsl: init at 0.5.8

This commit is contained in:
Jan Tojnar 2020-08-27 17:33:58 +02:00 committed by Jon
parent cadb4676c6
commit 9357dfc299
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, pyexcel-io
, xlrd
, xlwt
, nose
}:
buildPythonPackage rec {
pname = "pyexcel-xls";
version = "0.5.8";
src = fetchPypi {
inherit pname version;
sha256 = "LTPrS9ja37jHO1zMaiONZbORTomnVTsfObk5exfL5AI=";
};
propagatedBuildInputs = [
pyexcel-io
xlrd
xlwt
];
# Tests are not included in the archive.
# https://github.com/pyexcel/pyexcel-xls/issues/35
doCheck = false;
pythonImportsCheck = [ "pyexcel_xls" ];
meta = {
description = "A wrapper library to read, manipulate and write data in xls using xlrd and xlwt";
homepage = "http://docs.pyexcel.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jtojnar ];
};
}

View File

@ -5580,6 +5580,8 @@ in {
pyexcel-io = callPackage ../development/python-modules/pyexcel-io { };
pyexcel-xls = callPackage ../development/python-modules/pyexcel-xls { };
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };
pyext = callPackage ../development/python-modules/pyext { };