diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-01-11 15:36:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-01-16 11:22:33 +0100 |
commit | f15dc87c65e3fdc5a9b5d339d834e9cc9496ec16 (patch) | |
tree | 2563daa49ed2c00fbf74588a1b48df77c8a1e3c6 | |
parent | b317d3afa53045374ed8d7632e88b989743c9d99 (diff) |
gnu: python-dask: Propagate click.
* gnu/packages/python-xyz.scm (python-dask)[native-inputs]: Move python-click
from here...
[propagated-inputs]: ...to here.
Change-Id: I1a1617d9cb00268d9fc26f4fe6c9ecc6d0a2e375
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b722220bea..ccbec3bfa5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26932,7 +26932,8 @@ parentdir_prefix = dask- (add-before 'check 'pre-check (lambda _ (chdir "/tmp")))))) (propagated-inputs - (list python-cloudpickle + (list python-click ;needed at runtime + python-cloudpickle python-fsspec python-importlib-metadata ;needed at runtime for dask/_compatibility.py python-numpy @@ -26942,8 +26943,7 @@ parentdir_prefix = dask- python-toolz python-pyyaml)) (native-inputs - (list python-click - python-importlib-metadata + (list python-importlib-metadata python-pytest python-pytest-runner python-pytest-rerunfailures python-versioneer)) (home-page "https://github.com/dask/dask/") |