guix_mirror_bot pushed a commit to branch python-team in repository guix. commit e49f070ed8ea5d234ab4c9dd8f264d5383515778 Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 d04bdf62d8..37afb9415a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23500,19 +23500,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