fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
43 lines
870 B
Nix
43 lines
870 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
isPy3k,
|
|
chardet,
|
|
lml,
|
|
pyexcel-io,
|
|
texttable,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyexcel";
|
|
version = "0.7.0";
|
|
format = "setuptools";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-+/Du5dk7ls728ZqfAHA/IsCmTxlyjZG5VCgAmlISlwk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
chardet
|
|
lml
|
|
pyexcel-io
|
|
texttable
|
|
];
|
|
|
|
pythonImportsCheck = [ "pyexcel" ];
|
|
|
|
# Tests depend on pyexcel-xls & co. causing circular dependency.
|
|
# https://github.com/pyexcel/pyexcel/blob/dev/tests/requirements.txt
|
|
doCheck = false;
|
|
|
|
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; [ ];
|
|
};
|
|
}
|