summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-11 23:36:54 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:47 +0100
commitc5fee1e039eee15aad139f4ca405f0874f245d28 (patch)
tree52144a3089c1305ce35a5188e6e97d5d029034ac /gnu/packages
parent4e0ee3bb0c7d4e229188c7f51baafa0319b66488 (diff)
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
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-build.scm17
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index be41d595188..8b0221a3855 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -947,20 +947,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.")