mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
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.3.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-EeAqb4HSVuBmaHfYOXly0QMCMHpUwE/XFX6S+vdAyxA=";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|