guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit b3775228b9cc76f4459373dd3994169b4c84cc37
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jan 25 21:55:05 2026 +0000

    gnu: python-meson-python: Update to 0.19.0.
    
    * gnu/packages/python-xyz.scm (python-meson-python): Update to 0.19.0.
    [source]: Switch to git-fetch.
    [propagated-inputs]: Remove python-tomli; add meson, ninja,
    python-cython, and python-packaging.
    [native-inputs]: Add git-minimal, patchelf, python-pytest, and
    python-pytest-mock.
    
    Change-Id: Iae236772fe06eccf61f88147c9e4ffa23d0a5617
---
 gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3712436258..ec8468410b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15826,15 +15826,29 @@ file (e.g. @file{PKG-INFO}).")
 (define-public python-meson-python
   (package
     (name "python-meson-python")
-    (version "0.15.0")
+    (version "0.19.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "meson_python" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/mesonbuild/meson-python";)
+              (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "0vyjhjabvm41hqijifk33idbdl62i76kfyf884f9rs29rpp77nzx"))))
-    (build-system meson-build-system)
-    (propagated-inputs (list python-pyproject-metadata python-tomli))
+        (base32 "0kbp3iax1w12bkx0kfxsavdw4almksi1yh9866pcsf9zim49k5nz"))))
+    (build-system pyproject-build-system)
+    ;; tests: 124 passed, 16 skipped
+    (native-inputs
+     (list git-minimal
+           patchelf
+           python-pytest
+           python-pytest-mock))
+    (propagated-inputs
+     (list meson
+           ninja
+           python-cython
+           python-packaging
+           python-pyproject-metadata))
     (home-page "https://github.com/mesonbuild/meson-python";)
     (synopsis "Meson Python build backend (PEP 517)")
     (description "This package provides a PEP 517 build backend that makes

Reply via email to