summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-15 21:34:43 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:39 +0100
commit6562b22172104357bd1f0d24034db7c4ee59ca12 (patch)
tree2c6345529c8a03c2c2cc80157359dae80830ca9e /gnu/packages/python-build.scm
parent0383b3a31564452d0dc3d4286db2254a1f783efa (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
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 428caa459eb..a68b92977e4 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -390,23 +390,26 @@ installed with a newer @code{pip} or with wheel's own command line utility.")
390 (license license:expat))) 390 (license license:expat)))
391 391
392;;; TODO: Deprecate with https://github.com/pypa/pyproject-hooks. 392;;; TODO: Deprecate with https://github.com/pypa/pyproject-hooks.
393;;;
394;;; From PyPI web page: The core of this package has been renamed to
395;;; pyproject-hooks (https://pyproject-hooks.readthedocs.io). Please use that
396;;; package or build (https://pypa-build.readthedocs.io/en/stable/) in place
397;;; of pep517.
393(define-public python-pep517-bootstrap 398(define-public python-pep517-bootstrap
394 (hidden-package 399 (hidden-package
395 (package 400 (package
396 (name "python-pep517-bootstrap") 401 (name "python-pep517-bootstrap")
397 (version "0.9.1") 402 (version "0.13.1")
398 (source 403 (source
399 (origin 404 (origin
400 (method url-fetch) 405 (method url-fetch)
401 (uri (pypi-uri "pep517" version)) 406 (uri (pypi-uri "pep517" version))
402 (sha256 407 (sha256
403 (base32 408 (base32 "05xk0x7b5n7zmcqrznm4lnbakgdjpin19mp5zyzb92wksgzs4bqv"))))
404 "0zqidxah03qpnp6zkg3zd1kmd5f79hhdsfmlc0cldaniy80qddxf")))) 409 (build-system pyproject-build-system)
405 (build-system python-build-system)
406 (arguments 410 (arguments
407 `(#:tests? #f)) ;to avoid circular dependencies 411 `(#:tests? #f)) ;to avoid circular dependencies
408 (propagated-inputs 412 (native-inputs (list python-flit-core))
409 (list python-toml python-wheel))
410 (home-page "https://github.com/pypa/pep517") 413 (home-page "https://github.com/pypa/pep517")
411 (synopsis "Wrappers to build Python packages using PEP 517 hooks") 414 (synopsis "Wrappers to build Python packages using PEP 517 hooks")
412 (description 415 (description