diff options
Diffstat (limited to 'gnu/packages/sagemath.scm')
-rw-r--r-- | gnu/packages/sagemath.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm index fbfba570f9..ec4e307ddb 100644 --- a/gnu/packages/sagemath.scm +++ b/gnu/packages/sagemath.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019, 2025 Andreas Enge <andreas@enge.fr> -;;; Copyright © 2024 Vinicius Monego <monego@posteo.net> +;;; Copyright © 2024, 2025 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2025 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. @@ -368,6 +368,11 @@ database.") (url "https://github.com/sagemath/sage") (commit version))) (file-name (git-file-name name version)) + (patches + ;; This patch works around a Cython issue and can be removed + ;; after sage 10.7 is released. See + ;; https://github.com/sagemath/sage/issues/39735 + (search-patches "sage-safeguard-sage-getargspec-cython.patch")) (sha256 (base32 "0m2f6k6nwgyzfhf45r0kp798aimjxhpfnmsp1k03jpj9d6mhadk4")))) |