diff options
author | Andreas Enge <[email protected]> | 2025-02-10 15:28:32 +0100 |
---|---|---|
committer | Andreas Enge <[email protected]> | 2025-02-11 09:32:10 +0100 |
commit | 7cffd8a1ae6feabee58b5ee95001d6e95773c827 (patch) | |
tree | 69c9f9ad0f717bd22ad5847fa401ca20e8ef7ceb | |
parent | d7ca62b15de7ef89c88ef9b1118d29481ca50122 (diff) |
gnu: python-cypari2: Update to 2.2.1.
* gnu/packages/sagemath.scm (python-cypari2): Update to 2.2.1.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Replace python-cython by python-cython-3. Add
python-setuptools and python-wheel.
Change-Id: Ifa35166e720a6a7eb7fa130264b6dfe72cf4b527
-rw-r--r-- | gnu/packages/sagemath.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm index 9e78bd1ced..30d226a1e8 100644 --- a/gnu/packages/sagemath.scm +++ b/gnu/packages/sagemath.scm @@ -186,17 +186,17 @@ represented as strings.") (define-public python-cypari2 (package (name "python-cypari2") - (version "2.1.2") + (version "2.2.1") (source (origin (method url-fetch) (uri (pypi-uri "cypari2" version)) (sha256 (base32 - "0ymc4i9y60aazscc1blivirkr1rflzz6akkmvfzyn5l7mgnlbk83")))) - (build-system python-build-system) + "1f43bx3pryc1mg7i9gijl2c6aavijlbcxx9wyw11jn40lak1g85a")))) + (build-system pyproject-build-system) (native-inputs - (list python-cython)) + (list python-cython-3 python-setuptools python-wheel)) (propagated-inputs (list python-cysignals)) (inputs |