diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-25 21:55:05 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:42 +0100 |
| commit | 2be51334cf6dbb4a2a3ee7fdcb6ae355ca19a877 (patch) | |
| tree | 9cfea693309b941a74e59df8c7c5e7dc46f2c834 /gnu/packages/python-xyz.scm | |
| parent | 774825a6cde3267196ea06065f51c571daba57b0 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b051bd0ec40..ac56e0c51d7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15864,15 +15864,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 |
