guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 6e8a59e9a004fffba737ba281dfccc162e59152a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Dec 1 08:40:02 2025 +0000
gnu: Add python-cython-next.
* gnu/packages/python-xyz.scm (python-cython-next): New variable.
Change-Id: I9bc2e1881edb4113f5919d39a6481067da986045
---
gnu/packages/python-xyz.scm | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 26656e1f72..a890eab821 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10650,6 +10650,17 @@ writing C extensions for Python as easy as Python
itself.")
;; time of the test suite.
(setenv "CFLAGS" "-O0"))))))))
+(define-public python-cython-next
+ (package
+ (inherit python-cython)
+ (version "3.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cython" version))
+ (sha256
+ (base32 "0d0n0yyicr7icd4f5kn1wwbjqyad6j4m640xlqlk3ixchgad7bf3"))))))
+
;; It may be removed after 2026-01-24.
(define-deprecated/public-alias python-cython-3 python-cython)