From ad5eb3f758500b162b872351bfb66095a482aee4 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 1 Dec 2025 08:40:02 +0000 Subject: [PATCH] gnu: Add python-cython-next. * gnu/packages/python-xyz.scm (python-cython-next): New variable. Change-Id: I9bc2e1881edb4113f5919d39a6481067da986045 Signed-off-by: Rutherther --- 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 8bc19d6b0613a6a0e123afc5cd9ad3cdda8f0aad..bc48d8e39d7746aeb49b58a8a5bcdd2fc683f0fb 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)