guix_mirror_bot pushed a commit to branch python-team in repository guix. commit ea78d5b8bc6febe892933b006c65eb90c355e60f Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Fri Jul 11 23:36:54 2025 +0100
gnu: python-pdm-backend: Update to 2.4.5. * gnu/packages/python-build.scm (python-pdm-backend): Update to 2.4.5. Change-Id: I9e0438f5ff6f1048b48d7e1e3bf79f8301836d55 --- gnu/packages/python-build.scm | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 9c0652d4ac..57028644bf 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -949,20 +949,19 @@ abstractions for handling wheels and installing packages from wheels.") (define-public python-pdm-backend (package (name "python-pdm-backend") - (version "2.4.3") - (source (origin - (method url-fetch) - (uri (pypi-uri "pdm_backend" version)) - (sha256 - (base32 - "0a0741c1g5vxhrizyxh40mjxdmbsc4xid5vy4aji23f1g9x09nfv")))) + (version "2.4.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pdm_backend" version)) + (sha256 + (base32 "0nzyfa4jb0cpfhh0jfqsk4xz8rbyfyxqrh2ps3axm2ih8321kh2n")))) (build-system pyproject-build-system) (arguments (list #:tests? #f)) ; Depends on pytest, which we cannot import into this module. (home-page "https://pdm-backend.fming.dev/") - (synopsis - "PEP 517 build backend for PDM") + (synopsis "PEP 517 build backend for PDM") (description "PDM-Backend is a build backend that supports the latest packaging standards, which includes PEP 517, PEP 621 and PEP 660.")