gnu: python-pplpy: Add missing inputs.

* gnu/packages/sagemath.scm (python-pplpy)[native-inputs]: Add
python-setuptools and python-wheel.

Change-Id: I1da4130ddedeefbe71ae07c3885ae0e5fa1f8204
This commit is contained in:
Ricardo Wurmus 2025-01-16 14:01:58 +01:00
parent 9107da5ff2
commit a58cb6b365
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -5,6 +5,7 @@
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2025 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -275,7 +276,11 @@ (define-public python-pplpy
(sha256
(base32 "1zggfj09zkfcabcsasq27vwbhdmkig4yn380gi6wykcih9n22anl"))))
(build-system pyproject-build-system)
(native-inputs (list python-cython-3 python-pytest))
(native-inputs
(list python-cython-3
python-pytest
python-setuptools
python-wheel))
(inputs (list gmp mpc mpfr pari-gp ppl))
(propagated-inputs (list python-cysignals python-gmpy2))
(home-page "https://github.com/sagemath/pplpy")