python3.pkgs.pyexcel-ods: init at 0.5.6

This commit is contained in:
Jan Tojnar 2020-08-27 17:37:29 +02:00 committed by Jon
parent 9357dfc299
commit 48413581b1
2 changed files with 43 additions and 0 deletions

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchPypi
, pyexcel-io
, odfpy
, nose
, pyexcel
, pyexcel-xls
, psutil
}:
buildPythonPackage rec {
pname = "pyexcel-ods";
version = "0.5.6";
src = fetchPypi {
inherit pname version;
sha256 = "O+Uv2KrdvYvJKG9+sUj0VT1MlyUtaVw6nse5XmZmoiM=";
};
propagatedBuildInputs = [
pyexcel-io
odfpy
];
checkInputs = [
nose
pyexcel
pyexcel-xls
psutil
];
checkPhase = "nosetests";
meta = {
description = "Plug-in to pyexcel providing the capbility to read, manipulate and write data in ods formats using odfpy";
homepage = "http://docs.pyexcel.org/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jtojnar ];
};
}

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