sharlatan pushed a commit to branch python-team
in repository guix.
commit 0f5d2bf582c1eccfdf2f4f0af1e339e714e88d7b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Nov 7 21:03:29 2024 +0000
gnu: python-quadpy: Adjust inputs.
* gnu/packages/maths.scm (python-quadpy) [native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I2753caf2723e9735462c0a5c297cab3dcd4ffa7d
---
gnu/packages/maths.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index aaaa245b9b..a5c2d160d9 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4116,13 +4116,19 @@ bindings to almost all functions of PETSc.")
(base32
"1f989dipv7lqxvalfrvvlmhlxyl67a87lavyyqrr1mh88glhl592"))))
(build-system pyproject-build-system)
+ (native-inputs
+ (list python-accupy
+ python-pytest
+ python-setuptools
+ python-wheel
+ unzip
+ vtk))
(propagated-inputs
(list python-importlib-metadata
python-numpy
python-orthopy
python-scipy
python-sympy))
- (native-inputs (list python-accupy python-pytest unzip vtk))
(home-page "https://github.com/diego-hayashi/quadpy")
(synopsis "Numerical integration, quadrature for various domains")
(description