me
/
guix
Archived
1
0
Fork 0

gnu: Add python-meson-python.

* gnu/packages/python-xyz.scm (python-meson-python): New variable.

Change-Id: I43548f7d23b7a2f1c8caedacd72498c868c85ac3
master
Liliana Marie Prikler 2023-12-02 00:38:43 +01:00
parent 4c323c2f83
commit 9cc9183472
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 19 additions and 0 deletions

View File

@ -275,6 +275,7 @@
#:use-module (guix build-system cargo)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system meson)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix download)
@ -12624,6 +12625,24 @@ file (e.g. @file{PKG-INFO}).")
(define-public python-pep621
(deprecated-package "python-pep621" python-pyproject-metadata))
(define-public python-meson-python
(package
(name "python-meson-python")
(version "0.15.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "meson_python" version))
(sha256
(base32 "0vyjhjabvm41hqijifk33idbdl62i76kfyf884f9rs29rpp77nzx"))))
(build-system meson-build-system)
(propagated-inputs (list python-pyproject-metadata python-tomli))
(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
use of the Meson build system.")
(license license:expat)))
(define-public python-pyflakes
(package
(name "python-pyflakes")