My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyexcel-ods/default.nix

41 lines
743 B

{ lib
, buildPythonPackage
, fetchPypi
, pyexcel-io
, odfpy
, nose
, pyexcel
, pyexcel-xls
, psutil
}:
buildPythonPackage rec {
pname = "pyexcel-ods";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "f61b56515fd4ccd4687f0a112422f74ce8535247ad2da49db90038d7e3ed397c";
};
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 ];
};
}