mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
python310Packages.tablib: use optional-dependencies
This commit is contained in:
parent
8fd8a3aba1
commit
8ccd98536a
@ -1,14 +1,14 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, odfpy
|
||||
, openpyxl
|
||||
, pandas
|
||||
, setuptools-scm
|
||||
, pytestCheckHook
|
||||
, pytest-cov
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, setuptools-scm
|
||||
, tabulate
|
||||
, unicodecsv
|
||||
, xlrd
|
||||
, xlwt
|
||||
@ -35,13 +35,40 @@ buildPythonPackage rec {
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
odfpy
|
||||
openpyxl
|
||||
pyyaml
|
||||
xlrd
|
||||
xlwt
|
||||
];
|
||||
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
|
||||
];
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pandas
|
||||
|
Loading…
Reference in New Issue
Block a user