me
/
guix
Archived
1
0
Fork 0

gnu: python-pyarrow: Build with ORC support.

* gnu/packages/databases.scm (python-pyarrow)[propagated-inputs]: Add
apache-orc.
[arguments]: Set PYARROW_WITH_ORC variable.

Change-Id: Ic35cd1db75349ecb51d35815d710d8ca3a303b00
master
Ricardo Wurmus 2024-04-30 18:37:52 +02:00
parent 8647aaaa14
commit dd6f87e492
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 2 additions and 0 deletions

View File

@ -4991,11 +4991,13 @@ algorithm implementations.")
(add-before 'install 'set-pyarrow-build-options
(lambda _
(setenv "PYARROW_BUNDLE_ARROW_CPP_HEADERS" "0")
(setenv "PYARROW_WITH_ORC" "1")
(setenv "PYARROW_WITH_PARQUET" "1")
(setenv "PYARROW_WITH_DATASET" "1"))))))
(propagated-inputs
(list (list apache-arrow "lib")
(list apache-arrow "include")
apache-orc
python-numpy
python-pandas
python-six))