diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-15 21:34:43 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 00:57:40 +0100 |
commit | e56a45f7f1c514f24c96e6f0ecaf16ab88a8b136 (patch) | |
tree | 74ac5b49efcd33325052588a93b53bbad2e12ac4 | |
parent | 207c31f165a02d94c07d72f679d2b6b9e7630840 (diff) |
gnu: python-pep517-bootstrap: Update to 0.13.1.
* gnu/packages/python-build.scm (python-pep517-bootstrap): Update to 0.13.1.
[build-system]: Use pyproject.
[propagated-inputs]: Remove python-toml and python-wheel.
[native-inputs]: Add python-flit-core.
Change-Id: Ifc578d8925a20c6c6b3e5efdbb5ed67714f3f093
-rw-r--r-- | gnu/packages/python-build.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index a9a75ec6e9..62f0f36bcb 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -376,23 +376,26 @@ installed with a newer @code{pip} or with wheel's own command line utility.") (license license:expat))) ;;; TODO: Deprecate with https://github.com/pypa/pyproject-hooks. +;;; +;;; From PyPI web page: The core of this package has been renamed to +;;; pyproject-hooks (https://pyproject-hooks.readthedocs.io). Please use that +;;; package or build (https://pypa-build.readthedocs.io/en/stable/) in place +;;; of pep517. (define-public python-pep517-bootstrap (hidden-package (package (name "python-pep517-bootstrap") - (version "0.9.1") + (version "0.13.1") (source (origin (method url-fetch) (uri (pypi-uri "pep517" version)) (sha256 - (base32 - "0zqidxah03qpnp6zkg3zd1kmd5f79hhdsfmlc0cldaniy80qddxf")))) - (build-system python-build-system) + (base32 "05xk0x7b5n7zmcqrznm4lnbakgdjpin19mp5zyzb92wksgzs4bqv")))) + (build-system pyproject-build-system) (arguments `(#:tests? #f)) ;to avoid circular dependencies - (propagated-inputs - (list python-toml python-wheel)) + (native-inputs (list python-flit-core)) (home-page "https://github.com/pypa/pep517") (synopsis "Wrappers to build Python packages using PEP 517 hooks") (description |