guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit ef837ebe1acd2ab141a55291c3da60a22c3c0a36
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jul 16 23:02:55 2025 +0100
gnu: python-pyproject-hooks: Update to 1.2.0.
* gnu/packages/python-xyz.scm (python-pyproject-hooks): Update to 1.2.0.
[propagated-inputs]: Remove python-tomli.
Change-Id: I79fcc01550a6e7c72a91bf55690148e10a054ded
---
gnu/packages/python-xyz.scm | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index de54399635..e235981319 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23651,19 +23651,18 @@ manage (install/update) them for you.")
(define-public python-pyproject-hooks
(package
(name "python-pyproject-hooks")
- (version "1.0.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "pyproject_hooks" version))
- (sha256
- (base32
- "1xaf4sharvacqlav6w3b38nc4j0rzg0p4axi7zamanbzp6cb4wgj"))))
+ (version "1.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pyproject_hooks" version))
+ (sha256
+ (base32 "1y511nblr0lslz1d5s46844f5raryjnp3n1dci499bhgqkarp18y"))))
(build-system pyproject-build-system)
(native-inputs
(list python-flit-core
- python-testpath
- python-pytest))
- (propagated-inputs (list python-tomli))
+ python-pytest
+ python-testpath))
(home-page "https://github.com/pypa/pyproject-hooks")
(synopsis "Low-level library for calling @file{pyproject.toml} backends")
(description