python3.pkgs.pyexcel-ods: init at 0.5.6
This commit is contained in:
parent
9357dfc299
commit
48413581b1
41
pkgs/development/python-modules/pyexcel-ods/default.nix
Normal file
41
pkgs/development/python-modules/pyexcel-ods/default.nix
Normal file
@ -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-xls = callPackage ../development/python-modules/pyexcel-xls { };
|
||||||
|
|
||||||
|
pyexcel-ods = callPackage ../development/python-modules/pyexcel-ods { };
|
||||||
|
|
||||||
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };
|
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };
|
||||||
|
|
||||||
pyext = callPackage ../development/python-modules/pyext { };
|
pyext = callPackage ../development/python-modules/pyext { };
|
||||||
|
Loading…
Reference in New Issue
Block a user