diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-11 22:15:22 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-11 22:15:22 +0200 |
commit | b50eaa67642ebc25e9c896f2e700c08610e0a5da (patch) | |
tree | e3358208e17a836c2e3cdb3125f815a2ab35c2b8 /gnu/packages/sagemath.scm | |
parent | 7b69cd07408bf64fff026e4597920a90259e3205 (diff) | |
parent | 99b73f60415b282f2be39134f385cbda4840c336 (diff) | |
download | guix-b50eaa67642ebc25e9c896f2e700c08610e0a5da.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/sagemath.scm')
-rw-r--r-- | gnu/packages/sagemath.scm | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm index 7f76f8912b..bb80ff4db5 100644 --- a/gnu/packages/sagemath.scm +++ b/gnu/packages/sagemath.scm @@ -69,22 +69,17 @@ PARI/GP. It has been spun off from the SageMath mathematics software system, but it can be used independently.") (license license:gpl2+))) -;; The stable version of the following package is not young enough to be -;; used with Sage, since it does not support cython; so we use a beta -;; release. (define-public python-gmpy2 (package (name "python-gmpy2") - (version "2.1.0b1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/aleaxit/gmpy") - (commit (string-append "gmpy2-" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0ljvnmhxqdfsp0yy4c2hynhk5sggm63kkqsq4iwq4k9vsnx2xm97")))) + (version "2.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "gmpy2" version)) + (sha256 + (base32 + "1lc29g3s4z5f1qbsc2x9i9sf6wrpni9pwiwmb1wwx3hjr85i8xfs")))) (build-system python-build-system) (native-inputs (list unzip)) |