2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
lml,
|
|
|
|
isPy3k,
|
2020-09-25 04:45:31 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyexcel-io";
|
2022-02-10 20:34:41 +00:00
|
|
|
version = "0.6.6";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-10-19 00:13:06 +00:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-9ghL8a+l+/TGHPffRDcPpROCGvGIsC4+GbXvtm2Klp8=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [ lml ];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
# Tests depend on stuff that depends on this.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "pyexcel_io" ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "One interface to read and write the data in various excel formats, import the data into and export the data from databases";
|
|
|
|
homepage = "http://docs.pyexcel.org/";
|
|
|
|
license = lib.licenses.bsd3;
|
2023-05-24 13:37:59 +00:00
|
|
|
maintainers = with lib.maintainers; [ ];
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
}
|