summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-01 08:40:02 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:17:58 +0100
commitad5eb3f758500b162b872351bfb66095a482aee4 (patch)
treecf434d0339571a03e2be6d06c633cb752233b771 /gnu/packages/python-xyz.scm
parentafd189764fe00767a5f832bde96ce3c7bc23e9c0 (diff)
gnu: Add python-cython-next.
* gnu/packages/python-xyz.scm (python-cython-next): New variable. Change-Id: I9bc2e1881edb4113f5919d39a6481067da986045 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8bc19d6b061..bc48d8e39d7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10696,6 +10696,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)