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
This commit is contained in:
Sharlatan Hellseher 2025-07-11 23:36:54 +01:00
parent 4e0ee3bb0c
commit c5fee1e039
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -947,20 +947,19 @@ abstractions for handling wheels and installing packages from wheels.")
(define-public python-pdm-backend (define-public python-pdm-backend
(package (package
(name "python-pdm-backend") (name "python-pdm-backend")
(version "2.4.3") (version "2.4.5")
(source (origin (source
(method url-fetch) (origin
(uri (pypi-uri "pdm_backend" version)) (method url-fetch)
(sha256 (uri (pypi-uri "pdm_backend" version))
(base32 (sha256
"0a0741c1g5vxhrizyxh40mjxdmbsc4xid5vy4aji23f1g9x09nfv")))) (base32 "0nzyfa4jb0cpfhh0jfqsk4xz8rbyfyxqrh2ps3axm2ih8321kh2n"))))
(build-system pyproject-build-system) (build-system pyproject-build-system)
(arguments (arguments
(list (list
#:tests? #f)) ; Depends on pytest, which we cannot import into this module. #:tests? #f)) ; Depends on pytest, which we cannot import into this module.
(home-page "https://pdm-backend.fming.dev/") (home-page "https://pdm-backend.fming.dev/")
(synopsis (synopsis "PEP 517 build backend for PDM")
"PEP 517 build backend for PDM")
(description (description
"PDM-Backend is a build backend that supports the latest packaging "PDM-Backend is a build backend that supports the latest packaging
standards, which includes PEP 517, PEP 621 and PEP 660.") standards, which includes PEP 517, PEP 621 and PEP 660.")