gnu: Add python-pyproject-api.

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

Change-Id: I4bef06ecebcf3c5df99196b75017a4d97c7f2dda
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Vinicius Monego 2024-05-13 20:52:11 +00:00 committed by Sharlatan Hellseher
parent a47a1ff036
commit f3cfd885f1
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -21642,6 +21642,43 @@ in Python. It allows you to declare the libraries your project depends on and
it will manage (install/update) them for you.")
(license license:expat)))
(define-public python-pyproject-api
(package
(name "python-pyproject-api")
(version "1.6.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pyproject_api" version))
(sha256
(base32 "0f75rajzk72ay4x9ajw1835amm932q7cdn0yrbwiy3fwi80xq5qq"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
;; This test fails with AssertionError.
#~(list "-k" "not test_setuptools_prepare_metadata_for_build_wheel")
#:phases #~(modify-phases %standard-phases
(add-after 'unpack 'relax-packaging
(lambda _
(substitute* "pyproject.toml"
;; We have packaging 21.3.
(("packaging>=23.1") "packaging>=21.3")))))))
(native-inputs
(list python-covdefaults
python-hatch-vcs
python-hatchling
python-pytest
python-pytest-mock))
(propagated-inputs
(list python-packaging python-tomli))
(home-page "https://pyproject-api.readthedocs.io/latest/")
(synopsis "API to interact with the Python pyproject.toml based projects")
(description
"@code{pyproject-api} aims to abstract away interaction with
@code{pyproject.toml} style projects in a flexible way.")
(license license:expat)))
(define-public python-pyproject-hooks
(package
(name "python-pyproject-hooks")