diff options
author | Ricardo Wurmus <[email protected]> | 2025-02-27 13:57:15 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-02-27 13:58:23 +0100 |
commit | 9b2569e2c9a53b251ed997fb520b325dc476f3cd (patch) | |
tree | 1b1c216df93e13214b2ccc38e1adf5398a6cb044 /gnu/packages/python-science.scm | |
parent | a477e1c05cc42e0d5e7ffe58c4d80d9e687e1026 (diff) |
gnu: python-vaex-core: Update to 4.17.1.
* gnu/packages/python-science.scm (python-vaex-core): Update to 4.17.1.
[arguments]: Remove phase 'patch-for-pydantic.
[native-inputs]: Use python-cython-3 instead of python-cython.
Change-Id: I5fdb8f19b5d334058c5ece215a288ac4abd7647f
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 80bd14f8f4..f2554a25be 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -3925,13 +3925,13 @@ documentation for more information.") (define-public python-vaex-core (package (name "python-vaex-core") - (version "4.13.0") + (version "4.17.1") (source (origin (method url-fetch) (uri (pypi-uri "vaex-core" version)) (sha256 - (base32 "0ni862x5njhfsldjy49xmasd34plrs7yrmkyss6z1b6sgkbw9fsb")) + (base32 "1rzx5px3fwi5mh1z8y91brvffk7dkhj287lnmqp8zp6836kkqhya")) (modules '((guix build utils))) (snippet ;; Remove bundled libraries @@ -3940,16 +3940,7 @@ documentation for more information.") "vendor/pcre" "vendor/pybind11"))))) (build-system pyproject-build-system) - (arguments - (list - #:tests? #false ;require vaex.server and others, which require vaex-core. - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'patch-for-pydantic - (lambda _ - (substitute* "vaex/settings.py" - (("from pydantic import BaseModel") - "from pydantic_settings import BaseModel"))))))) + (arguments (list #:tests? #false)) ;require vaex.server and others, which require vaex-core. (inputs (list boost pcre pybind11-2.3)) (propagated-inputs @@ -3974,7 +3965,7 @@ documentation for more information.") python-six python-tabulate)) (native-inputs - (list python-pytest python-cython python-setuptools python-wheel)) + (list python-pytest python-cython-3 python-setuptools python-wheel)) (home-page "https://www.github.com/maartenbreddels/vaex") (synopsis "Core of Vaex library for exploring tabular datasets") (description "Vaex is a high performance Python library for lazy |