lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit fb0fef8901375982e5fdee535bc08a1d0af57a98
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Sat Dec 4 08:57:06 2021 +0100
gnu: python-pep517-bootstrap: Update to 0.12.0.
* gnu/packages/python-build.scm (python-pep517-bootstrap): Update to 0.12.0.
[propagated-inputs]: Use python-tomli instead of python-toml.
[native-inputs]: Add python-flit-core-bootstrap.
---
gnu/packages/python-build.scm | 25 +++++++++++++++----------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index f7b722df7d..427fbe52bb 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -383,19 +383,24 @@ Python file, so it can be easily copied into your
project.")
(hidden-package
(package
(name "python-pep517-bootstrap")
- (version "0.9.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "pep517" version))
- (sha256
- (base32
- "0zqidxah03qpnp6zkg3zd1kmd5f79hhdsfmlc0cldaniy80qddxf"))))
+ (version "0.12.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pypa/pep517")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1giljizqy337lhbhx7m0lbxw9fvsjqd97fgkf3i0mw3p7wpn3jy7"))))
(build-system python-build-system)
(arguments
- `(#:tests? #f)) ;to avoid circular dependencies
+ `(#:tests? #f)) ; To avoid circular dependencies.
(propagated-inputs
- (list python-toml python-wheel))
+ (list python-tomli python-wheel))
+ (native-inputs
+ ;; Build system.
+ (list python-flit-core-bootstrap))
(home-page "https://github.com/pypa/pep517")
(synopsis "Wrappers to build Python packages using PEP 517 hooks")
(description