diff options
author | Marius Bakke <marius@gnu.org> | 2022-09-18 16:21:44 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-18 16:21:44 +0200 |
commit | 51482db4da0104928d4f95fcce808687dc9b0334 (patch) | |
tree | 9525a6f3f5ed8b5f8b130d5dc46a37d29f25d336 /gnu/packages/python-xyz.scm | |
parent | d4ebf063f1fd2bd783246266719e12089658d6f8 (diff) | |
parent | ce3b51a4c6bef22e35ca04a945917510627fc3a7 (diff) | |
download | guix-51482db4da0104928d4f95fcce808687dc9b0334.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 56a07564c9..946b7e839b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5605,6 +5605,18 @@ programming language and the extended Cython programming language. It makes writing C extensions for Python as easy as Python itself.") (license license:asl2.0))) +;; Newer version required for Pandas. +(define-public python-cython-0.29.32 + (package + (inherit python-cython) + (version "0.29.32") + (source (origin + (method url-fetch) + (uri (pypi-uri "Cython" version)) + (sha256 + (base32 + "1xqsihpqnfal29nb5kmw8z71nd4jbsnbz7p3lkr094xpb13wycw7")))))) + (define-public python-cython-3 (package (inherit python-cython) |