summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-16 23:02:55 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:14 +0100
commitd15d4cb19c205cd66801d3b7267c00247123e127 (patch)
tree062929f8c1d9fddbcf4fef4856f617898fa616e9 /gnu/packages/python-xyz.scm
parentdb8d8e0354019c3c4a7ffe509b5daf02092d1c36 (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm19
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 710c5c7225..c0a202889d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23613,19 +23613,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