python3.pkgs.pyexcel: init at 0.6.4

This commit is contained in:
Jan Tojnar 2020-08-27 17:24:27 +02:00 committed by Jon
parent 4bfca7c751
commit cadb4676c6
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, lml
, pyexcel-io
, texttable
, nose
}:
buildPythonPackage rec {
pname = "pyexcel";
version = "0.6.4";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "pPNYnimHhW7SL6X6OLwagZoadTD7IdUSbO7vAqQPQu8=";
};
propagatedBuildInputs = [
lml
pyexcel-io
texttable
];
checkInputs = [
nose
];
# Tests depend on pyexcel-xls & co. causing circular dependency.
# https://github.com/pyexcel/pyexcel/blob/dev/tests/requirements.txt
doCheck = false;
pythonImportsCheck = [ "pyexcel" ];
checkPhase = "nosetests";
meta = {
description = "Single API for reading, manipulating and writing data in csv, ods, xls, xlsx and xlsm files";
homepage = "http://docs.pyexcel.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jtojnar ];
};
}

View File

@ -5576,6 +5576,8 @@ in {
pyenchant = callPackage ../development/python-modules/pyenchant { enchant2 = pkgs.enchant2; };
pyexcel = callPackage ../development/python-modules/pyexcel { };
pyexcel-io = callPackage ../development/python-modules/pyexcel-io { };
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };