summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-22 23:38:32 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-27 19:59:51 +0000
commit7ba3dd1676c3dfc5a1cf3cce31528dd745d72386 (patch)
tree104f032dc36eac4fd4e3b19af0b39d571a976b2a /gnu
parentc03d773d86444f690637b8e7e1dae77df5a8b39f (diff)
gnu: python-pyarrow: Switch to pyproject.
* gnu/packages/databases.scm (python-pyarrow): [build-system]: Switch to pyproject-build-system. [arguments]<#:phases>: Keep 'build phase. [native-inputs]: Add python-setuptools. Change-Id: Ibcaf7988f06f6abc5a7989724984c296440db0d6 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/databases.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index d69638ddcf3..666506d7cb9 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -5613,7 +5613,7 @@ algorithm implementations.")
(package
(inherit apache-arrow)
(name "python-pyarrow")
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
(list
;; XXX: Test data is distributed separately in
@@ -5623,7 +5623,6 @@ algorithm implementations.")
#:tests? #f
#:phases
#~(modify-phases %standard-phases
- (delete 'build) ; XXX the build is performed again during the install phase
(add-after 'unpack 'enter-source-directory
(lambda _ (chdir "python")))
(add-after 'enter-source-directory 'set-version
@@ -5667,7 +5666,8 @@ __version_tuple__ = version_tuple = (~a)~%" version version-tuple))))))
python-cython
python-pytest
python-pytest-runner
- python-setuptools-scm))
+ python-setuptools-scm
+ python-setuptools))
(outputs '("out"))
(home-page "https://arrow.apache.org/docs/python/")
(synopsis "Python bindings for Apache Arrow")