diff options
author | Vinicius Monego <monego@posteo.net> | 2025-06-21 16:43:08 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-06-21 23:27:33 -0300 |
commit | 2b61c7decb31c98a5d91d7c79ba82623dc304a73 (patch) | |
tree | 436348dd31cb256659d108a0fa0adcc657789563 | |
parent | c13b49f27ce4c03da5a024e8e1d501a5a0a3e55a (diff) |
gnu: python-gmpy2: Update to 2.2.1.
* gnu/packages/sagemath.scm (python-gmpy2): Update to 2.2.1.
[build-system]: Use pyproject-build-system.
[native-inputs]: Remove unzip. Add python-pytest, python-setuptools,
python-wheel.
Change-Id: Ifb42437498034627085211b523a6e1d2a200d91d
-rw-r--r-- | gnu/packages/sagemath.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm index 3f439bdad0..678cb1f7fc 100644 --- a/gnu/packages/sagemath.scm +++ b/gnu/packages/sagemath.scm @@ -216,17 +216,16 @@ but it can be used independently.") (define-public python-gmpy2 (package (name "python-gmpy2") - (version "2.1.2") + (version "2.2.1") (source (origin (method url-fetch) (uri (pypi-uri "gmpy2" version)) (sha256 (base32 - "1lc29g3s4z5f1qbsc2x9i9sf6wrpni9pwiwmb1wwx3hjr85i8xfs")))) - (build-system python-build-system) - (native-inputs - (list unzip)) + "0ch4cnbgnxifcbvkxsc7m5ylxsagrjrhr4a4fnw8rds1fib0fgp8")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools python-wheel)) (inputs (list gmp mpfr mpc)) (home-page "https://github.com/aleaxit/gmpy") |