diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-16 11:52:39 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:23:23 +0000 |
commit | 44ee1f218233fdad949c6c991864bc96d57e5c61 (patch) | |
tree | 264410c068b985da33d892655fda290912b972fb /gnu | |
parent | c8b16a15238ece85227a2029d031c8d93abfcd3c (diff) | |
download | guix-44ee1f218233fdad949c6c991864bc96d57e5c61.tar.gz guix-44ee1f218233fdad949c6c991864bc96d57e5c61.zip |
gnu: meson-python: Update to 0.17.1.
* gnu/packages/build-tools.scm (meson-python): Update to 0.17.1.
[propagated-inputs]: Remove python-cython; add python-cython-3.
[native-inputs]: Remove python-cython; add python-cython-3.
Change-Id: Ifd8151f99137a7825321a9e8834c33aff2eebc87
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/build-tools.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index 31876e087f..319a1d0431 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -335,13 +335,13 @@ resembles Python.") (define-public meson-python (package (name "meson-python") - (version "0.15.0") + (version "0.17.1") (source (origin (method url-fetch) (uri (pypi-uri "meson_python" version)) (sha256 (base32 - "0vyjhjabvm41hqijifk33idbdl62i76kfyf884f9rs29rpp77nzx")))) + "10szxcqgki4zwkrwmsirdg68h03k9qmfswd4r5xyz7p1y9lizfgg")))) (build-system pyproject-build-system) (arguments (list #:test-flags #~(list "tests" @@ -352,7 +352,7 @@ resembles Python.") (list meson ninja python-colorama - python-cython + python-cython-3 python-pyproject-metadata python-tomli python-typing-extensions @@ -362,7 +362,7 @@ resembles Python.") git-minimal/pinned patchelf pkg-config - python-cython + python-cython-3 python-gitpython python-pytest python-pytest-cov |