mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
97 lines
1.5 KiB
Nix
97 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.5.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-9mYd/EXh1PUfqKYjn5yDSTgIWaW/qnMoBkXwRtbJbjM=";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|