diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-04 21:15:21 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-11 21:18:08 +0100 |
commit | b92f709e56e5cf31a20cc5458c8d5328fd8f8b65 (patch) | |
tree | 02402d89c6cfff04e1fd3fdc6aa92966faa3e64d | |
parent | be784f5c2fbeab20adba91565fc1546a57ddd675 (diff) |
gnu: python-joblib: Add missing inputs.
* gnu/packages/python-xyz.scm (python-joblib)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I4e19c611eb9faf5921e406e77b6f1e88f98daf8b
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2ec60c01ee..3ba9be4bf5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6676,7 +6676,7 @@ bookmarks using a declarative input in the form of a markdown file.") (list #:test-flags ; disabled to avoid having to depend on ipython/jupyter #~(list "-k" "not test_parallel_call_cached_function_defined_in_jupyter"))) - (native-inputs (list python-pytest)) + (native-inputs (list python-pytest python-setuptools python-wheel)) (propagated-inputs (list python-psutil)) (home-page "https://joblib.readthedocs.io/") (synopsis "Using Python functions as pipeline jobs") |