2020-08-27 16:24:27 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-10-17 02:16:21 +01:00
|
|
|
, isPy3k
|
2021-10-10 04:10:44 +01:00
|
|
|
, chardet
|
2020-08-27 16:24:27 +01:00
|
|
|
, lml
|
|
|
|
, pyexcel-io
|
|
|
|
, texttable
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyexcel";
|
2021-10-08 23:23:12 +01:00
|
|
|
version = "0.6.7";
|
2020-10-17 02:16:21 +01:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
2020-08-27 16:24:27 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-08 23:23:12 +01:00
|
|
|
sha256 = "cbbd9875729767564b3b64b6ed6a9870b14631184943d13646833d94157dd10f";
|
2020-08-27 16:24:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2021-10-10 04:10:44 +01:00
|
|
|
chardet
|
2020-08-27 16:24:27 +01:00
|
|
|
lml
|
|
|
|
pyexcel-io
|
|
|
|
texttable
|
|
|
|
];
|
|
|
|
|
2021-10-10 04:10:44 +01:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"pyexcel"
|
2020-08-27 16:24:27 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# 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; [ jtojnar ];
|
|
|
|
};
|
|
|
|
}
|