diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-07 21:03:29 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:19:06 +0000 |
commit | afff7aecb7474e22a4124ecdef6f05f3a6397071 (patch) | |
tree | 231966c9a0b0eaa816d0d1952f297cbd19eefa7a | |
parent | ef977e0e9a3cc315d5ce3298ae8165d2bcb21c4e (diff) | |
download | guix-afff7aecb7474e22a4124ecdef6f05f3a6397071.tar.gz guix-afff7aecb7474e22a4124ecdef6f05f3a6397071.zip |
gnu: python-quadpy: Adjust inputs.
* gnu/packages/maths.scm (python-quadpy) [native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I2753caf2723e9735462c0a5c297cab3dcd4ffa7d
-rw-r--r-- | gnu/packages/maths.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index fc1bc05e23..ed8020a3cb 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4135,13 +4135,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 |