summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-05-03 01:36:28 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:19:21 +0100
commit48badd68ec88cce8d41a1adad340228f0319db32 (patch)
tree2a847e7179dad4e0a8fb312a757ff6b4e1a90c60 /gnu/packages/python-build.scm
parentf66b5844d221dbc31bbd54a418e6b82a8dfcb2ec (diff)
gnu: python-poetry-core: Update to 2.3.2.
* gnu/packages/python-build.scm (python-poetry-core): Update to 2.3.2. Change-Id: Ia0103d9295544ec692e9fa6ca4325f8baadb25d1 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm13
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index cb6c6055748..c953ba6425c 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1074,16 +1074,19 @@ order to make bootstrapping easier.")
1074(define-public python-poetry-core 1074(define-public python-poetry-core
1075 (package 1075 (package
1076 (name "python-poetry-core") 1076 (name "python-poetry-core")
1077 (version "2.1.3") 1077 (version "2.3.2")
1078 (source 1078 (source
1079 (origin 1079 (origin
1080 (method url-fetch) 1080 (method git-fetch)
1081 (uri (pypi-uri "poetry_core" version)) 1081 (uri (git-reference
1082 (url "https://github.com/python-poetry/poetry-core")
1083 (commit version)))
1084 (file-name (git-file-name name version))
1082 (sha256 1085 (sha256
1083 (base32 "194nwaig8zkbj2ig4zwf1k7cl4vqlmvs8mmdkb425mky8was08h5")))) 1086 (base32 "07n64i2wal2d6ca74vkl7x8wsks6bi0njii8pv8rmfragc48kzj6"))))
1084 (build-system pyproject-build-system) 1087 (build-system pyproject-build-system)
1085 (arguments 1088 (arguments
1086 `(#:tests? #f)) ;disabled to avoid extra dependencies 1089 (list #:tests? #f)) ;disabled to avoid extra dependencies
1087 (home-page "https://github.com/python-poetry/poetry-core") 1090 (home-page "https://github.com/python-poetry/poetry-core")
1088 (synopsis "Poetry PEP 517 build back-end") 1091 (synopsis "Poetry PEP 517 build back-end")
1089 (description 1092 (description