fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
81 lines
1.5 KiB
Nix
81 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
markuppy,
|
|
odfpy,
|
|
openpyxl,
|
|
pandas,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
setuptools-scm,
|
|
tabulate,
|
|
unicodecsv,
|
|
xlrd,
|
|
xlwt,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tablib";
|
|
version = "3.6.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-BAaF/eEekjdnX0Pphe25S2MlCl6SNvidVhzm+xRluDk=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pytest.ini \
|
|
--replace " --cov=tablib --cov=tests --cov-report xml --cov-report term --cov-report html" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
passthru.optional-dependencies = {
|
|
all = [
|
|
markuppy
|
|
odfpy
|
|
openpyxl
|
|
pandas
|
|
pyyaml
|
|
tabulate
|
|
xlrd
|
|
xlwt
|
|
];
|
|
cli = [ tabulate ];
|
|
html = [ markuppy ];
|
|
ods = [ odfpy ];
|
|
pandas = [ pandas ];
|
|
xls = [
|
|
xlrd
|
|
xlwt
|
|
];
|
|
xlsx = [ openpyxl ];
|
|
yaml = [ pyyaml ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pandas
|
|
pytestCheckHook
|
|
unicodecsv
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# test_tablib needs MarkupPy, which isn't packaged yet
|
|
"tests/test_tablib.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "tablib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Format-agnostic tabular dataset library";
|
|
homepage = "https://tablib.readthedocs.io/";
|
|
changelog = "https://github.com/jazzband/tablib/raw/v${version}/HISTORY.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|