mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-fastparquet: Update to 2024.11.0, fix build.
* gnu/packages/databases.scm (python-fastparquet): Update to 2024.11.0. [native-inputs]: Remove python-pytest-runner; add python-pytest, python-setuptools, and python-wheel. Change-Id: I4a798972077cd1646e48cea28b4bc369a7a68fd1
This commit is contained in:
parent
3fd29e131b
commit
5737570c2a
1 changed files with 9 additions and 7 deletions
|
@ -5364,7 +5364,7 @@ other traditional Python scientific computing packages.")
|
||||||
(define-public python-fastparquet
|
(define-public python-fastparquet
|
||||||
(package
|
(package
|
||||||
(name "python-fastparquet")
|
(name "python-fastparquet")
|
||||||
(version "2024.2.0")
|
(version "2024.11.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
;; Fastparquet uses setuptools-scm to find the current version. This
|
;; Fastparquet uses setuptools-scm to find the current version. This
|
||||||
|
@ -5377,7 +5377,7 @@ other traditional Python scientific computing packages.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0f32dj1xvd11l0siznqd33dpjlhg9siylcjcfkcdlqfcy45jfj3v"))))
|
(base32 "0dhmyag06d073g1q58npbcikr9hjd6jgf05721gkl6m1gsprv7hq"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -5403,6 +5403,13 @@ other traditional Python scientific computing packages.")
|
||||||
;; Cython extensions need to be built for the check phase.
|
;; Cython extensions need to be built for the check phase.
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "python" "setup.py" "build_ext" "--inplace"))))))
|
(invoke "python" "setup.py" "build_ext" "--inplace"))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-cython
|
||||||
|
python-pytest
|
||||||
|
python-pytest-xdist
|
||||||
|
python-setuptools
|
||||||
|
python-setuptools-scm
|
||||||
|
python-wheel))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-cramjam
|
(list python-cramjam
|
||||||
python-fsspec
|
python-fsspec
|
||||||
|
@ -5410,11 +5417,6 @@ other traditional Python scientific computing packages.")
|
||||||
python-numpy
|
python-numpy
|
||||||
python-packaging
|
python-packaging
|
||||||
python-pandas))
|
python-pandas))
|
||||||
(native-inputs
|
|
||||||
(list python-cython
|
|
||||||
python-pytest-runner
|
|
||||||
python-pytest-xdist
|
|
||||||
python-setuptools-scm))
|
|
||||||
(home-page "https://github.com/dask/fastparquet")
|
(home-page "https://github.com/dask/fastparquet")
|
||||||
(synopsis "Python implementation of the Parquet file format")
|
(synopsis "Python implementation of the Parquet file format")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue