aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-04-04 21:16:57 +0200
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:28 +0200
commitf29a7770d3582fd047a165213d0967be5cfe9b9e (patch)
tree535da8e663c77029bfac7e35535666743cd7998f
parente58d65437333e498b37de7c7f0b4ea6eb459d0cf (diff)
downloadguix-f29a7770d3582fd047a165213d0967be5cfe9b9e.tar.gz
guix-f29a7770d3582fd047a165213d0967be5cfe9b9e.zip
gnu: Add python-poetry-core-next.
* gnu/packages/python-build.scm (python-poetry-core-next): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-build.scm10
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 6bea44fee6..9ac325094d 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -571,6 +571,16 @@ a light weight, fully compliant, self-contained package allowing PEP 517
compatible build front-ends to build Poetry managed projects.")
(license license:expat)))
+(define-public python-poetry-core-next
+ (package/inherit python-poetry-core
+ (version "2.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "poetry_core" version))
+ (sha256
+ (base32 "015a0802radb2x5wsbywm4fggv4s1srh8zyml5v58xgrxg8bpnzr"))))))
+
;;; This package exists to bootstrap python-tomli.
(define-public python-flit-core-bootstrap
(package