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
This commit is contained in:
Sharlatan Hellseher 2025-07-16 23:02:55 +01:00
parent 1d84cb7cd8
commit 1fd5f31003
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -23637,19 +23637,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