guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 7f89bc3f8564a7bcf66e120252c6aa0c05528aab Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Thu Jul 31 15:10:38 2025 +0100
gnu: python-async-generator: Switch to pyproject-build-system. * gnu/packages/python-xyz.scm (python-async-generator) [build-system]: Use pyproject. [native-inputs]: Add python-setuptools. Change-Id: I230bdc35578a03cd1fd5a614ee5b6eb1e659d6f8 --- gnu/packages/python-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0c65446d79..c2d969f3b1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29121,9 +29121,9 @@ Parso is also able to list multiple syntax errors in your Python file.") (sha256 (base32 "0i11f6z6lix8ixi3vsk6s76zvvpmgrw6zjrcwjm0m4hjdh83vfvf")))) - (build-system python-build-system) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest python-setuptools)) (home-page "https://github.com/python-trio/async_generator") (synopsis "Async generators and context managers for Python 3.5+") (description "@code{async_generator} back-ports Python 3.6's native async