gnu: python-pandas: Enable Excel file format support.
* gnu/packages/python.scm (python-pandas)[phases]{check}: Re-instate the tests from the test_excel.py module. * gnu/packages/python.scm (python-pandas)[propagated-inputs]: Add python-openpyxl and python-xlrd.
This commit is contained in:
parent
a042d348c2
commit
667c6ef516
1 changed files with 3 additions and 2 deletions
|
@ -1043,7 +1043,6 @@ (define-public python-pandas
|
|||
'("pandas/tests/io/conftest.py"
|
||||
"pandas/tests/io/json/test_compression.py"
|
||||
"pandas/tests/io/parser/test_network.py"
|
||||
"pandas/tests/io/test_excel.py"
|
||||
"pandas/tests/io/test_parquet.py"))
|
||||
(invoke "pytest" "-vv" "pandas" "--skip-slow"
|
||||
"--skip-network" "-k"
|
||||
|
@ -1051,8 +1050,10 @@ (define-public python-pandas
|
|||
"not test_read_s3_jsonl"))))))))
|
||||
(propagated-inputs
|
||||
`(("python-numpy" ,python-numpy)
|
||||
("python-openpyxl" ,python-openpyxl)
|
||||
("python-pytz" ,python-pytz)
|
||||
("python-dateutil" ,python-dateutil)))
|
||||
("python-dateutil" ,python-dateutil)
|
||||
("python-xlrd" ,python-xlrd)))
|
||||
(native-inputs
|
||||
`(("python-cython" ,python-cython)
|
||||
("python-beautifulsoup4" ,python-beautifulsoup4)
|
||||
|
|
Loading…
Reference in a new issue