[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/103: gnu: python-pep517-bootstrap: Update to 0.12.0.
From: |
guix-commits |
Subject: |
04/103: gnu: python-pep517-bootstrap: Update to 0.12.0. |
Date: |
Wed, 5 Jan 2022 09:44:27 -0500 (EST) |
lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit e83d959c104d422486158a1324100df2f34b1975
Author: Lars-Dominik Braun <lars@6xq.net>
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 89cc40016d..f8ed910c9e 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -265,19 +265,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
- branch wip-python-pep517 created (now 4968ef975c), guix-commits, 2022/01/05
- 03/103: gnu: Properly bootstrap python-flit-core and python-tomli., guix-commits, 2022/01/05
- 01/103: build/python: Handle missing setuptools in sanity-check.py, guix-commits, 2022/01/05
- 04/103: gnu: python-pep517-bootstrap: Update to 0.12.0.,
guix-commits <=
- 05/103: gnu: python-pypa-build: Replace toml with tomli., guix-commits, 2022/01/05
- 08/103: gnu: pypy: Move to separate module., guix-commits, 2022/01/05
- 14/103: gnu: python-testpath: Remove custom build phases., guix-commits, 2022/01/05
- 11/103: gnu: python-pyzmq: Fix #:configure-flags type., guix-commits, 2022/01/05
- 12/103: gnu: python-file: Remove obsolete #:configure-flags., guix-commits, 2022/01/05
- 09/103: gnu: python-charset-normalizer: Add missing input., guix-commits, 2022/01/05
- 13/103: gnu: python-mediafile: Add missing build dependencies., guix-commits, 2022/01/05
- 17/103: gnu: gusb-minimal: Add explicit dependency on setuptools., guix-commits, 2022/01/05
- 20/103: gnu: python-branca: Disable tests., guix-commits, 2022/01/05
- 22/103: gnu: dblatex: Use custom 'build and 'install phases., guix-commits, 2022/01/05