guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 64a7e813d1f8899fdfd738e011c258fc74313389
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 02:00:27 2025 +0100
gnu: python-pep517-bootstrap: Move to (gnu packages python-xyz).
* gnu/packages/python-build.scm (python-pep517-bootstrap): Move from here…
* gnu/packages/python-xyz.scm (python-pep517-bootstrap): …to here.
Change-Id: I6d19384430570062520f688b92f5fa284cba7da1
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-build.scm | 27 ---------------------------
gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++
2 files changed, 27 insertions(+), 27 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 55efe81d26..3b597d33c3 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -592,33 +592,6 @@ installed with a newer @code{pip} or with wheel's own
command line utility.")
(sha256
(base32 "0ww8fgkvwv35ypj4cnngczdwp6agr4qifvk2inb32azfzbrrc4fd"))))))
-;;; 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.13.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "pep517" version))
- (sha256
- (base32 "05xk0x7b5n7zmcqrznm4lnbakgdjpin19mp5zyzb92wksgzs4bqv"))))
- (build-system pyproject-build-system)
- (arguments
- `(#:tests? #f)) ;to avoid circular dependencies
- (native-inputs (list python-flit-core))
- (home-page "https://github.com/pypa/pep517")
- (synopsis "Wrappers to build Python packages using PEP 517 hooks")
- (description
- "Wrappers to build Python packages using PEP 517 hooks.")
- (license license:expat))))
-
(define-public python-pyparsing
(package
(name "python-pyparsing")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f66b498362..2544511e48 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -16152,6 +16152,33 @@ application monitoring and error tracking software.")
versions number match PEP 440.")
(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.13.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pep517" version))
+ (sha256
+ (base32 "05xk0x7b5n7zmcqrznm4lnbakgdjpin19mp5zyzb92wksgzs4bqv"))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:tests? #f)) ;to avoid circular dependencies
+ (native-inputs (list python-flit-core))
+ (home-page "https://github.com/pypa/pep517")
+ (synopsis "Wrappers to build Python packages using PEP 517 hooks")
+ (description
+ "Wrappers to build Python packages using PEP 517 hooks.")
+ (license license:expat))))
+
(define-public python-pep517
(package
(inherit python-pep517-bootstrap)