diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2015-12-21 05:09:35 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2015-12-21 06:55:13 +0200 |
commit | 56918e26cf5e999c7d4545c7c82bfde0667f96f0 (patch) | |
tree | cdb4c9a02ab6134a9b880fbffe73fe1fc3af3093 /gnu/packages | |
parent | e99711af2231ad41098c4bfcb031e59e8aa6e68d (diff) | |
download | guix-56918e26cf5e999c7d4545c7c82bfde0667f96f0.tar.gz guix-56918e26cf5e999c7d4545c7c82bfde0667f96f0.zip |
gnu: python-cython: Update to 0.23.4.
* gnu/packages/python.scm (python-cython): Update to 0.23.4.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 95c24a6a43..74a7a84452 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2899,15 +2899,14 @@ is designed to have a low barrier to entry.") (define-public python-cython (package (name "python-cython") - (version "0.21.1") + (version "0.23.4") (source (origin (method url-fetch) - (uri (string-append "http://cython.org/release/Cython-" - version ".tar.gz")) + (uri (pypi-uri "Cython" version)) (sha256 (base32 - "0ddz2l2dvcy5hdkxx4xlfiwpccvwia7ixgcy4h0pdv46a4i4vxj3")))) + "13hdffhd37mx3gjby018xl179jaj957fy7kzi01crmimxvn2zi7y")))) (build-system python-build-system) ;; we need the full python package and not just the python-wrapper ;; because we need libpython3.3m.so |