diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-12 13:42:53 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:45 +0100 |
commit | 214e6e6232879ffde9f396e69cdfc256092a89d0 (patch) | |
tree | 3281f77130087bac9dc066db46240c575dbe9e5b /gnu/packages/maths.scm | |
parent | 4753d8f61bce69267124997571336d88a68a6503 (diff) |
gnu: python-libensemble: Add missing inputs.
* gnu/packages/maths.scm (python-libensemble)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: If6f7924b8c58e285918afae99354bdde3b127d14
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index d9574346f8..ed9c7bfa0e 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4085,18 +4085,6 @@ savings are consistently > 5x.") (sha256 (base32 "0qxb0sn624jaxjxg2ayd65zaiq1p043w3kk55w8r6drkjiar70yj")))) (build-system pyproject-build-system) - (native-inputs (list ncurses - python-mock - python-mpi4py - python-pytest - python-pytest-cov - python-pytest-timeout)) - (propagated-inputs (list python-mpmath - python-numpy - python-psutil - python-pydantic-2 - python-pyyaml - python-tomli)) (arguments (list #:phases @@ -4124,6 +4112,20 @@ savings are consistently > 5x.") "export UNIT_TEST_MPI_SUBDIR=''")) ;; Run only unit tests, regression tests require MPI. (invoke "bash" "libensemble/tests/run-tests.sh" "-u"))))))) + (native-inputs (list ncurses + python-mock + python-mpi4py + python-pytest + python-pytest-cov + python-pytest-timeout + python-setuptools + python-wheel)) + (propagated-inputs (list python-mpmath + python-numpy + python-psutil + python-pydantic-2 + python-pyyaml + python-tomli)) (home-page "https://github.com/Libensemble/libensemble") (synopsis "Toolkit for dynamic ensembles of calculations") (description "@code{libensemble} is a complete toolkit for dynamic |