summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2020-07-08 00:48:41 -0300
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2020-07-08 11:54:28 +0200
commit8bebb547d3ad8ea086f029c67cef8d6eafe66805 (patch)
tree0aadd2ddc5d1d370ade532f4c54f3604c3f7e901 /gnu/packages/python-science.scm
parent34432d5a7808a3e9979e7c32dffb938dd27e79a5 (diff)
downloadguix-patches-8bebb547d3ad8ea086f029c67cef8d6eafe66805.tar
guix-patches-8bebb547d3ad8ea086f029c67cef8d6eafe66805.tar.gz
gnu: python-scikit-image: Add dependencies.
* gnu/packages/python-science.scm (python-scikit-image)[propagated-inputs]: Add python-imageio and python-tifffile. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 71601c0ea1..88843c1fb2 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -248,13 +248,15 @@ logic, also known as grey logic.")
(propagated-inputs
`(("python-cloudpickle" ,python-cloudpickle)
("python-dask" ,python-dask)
+ ("python-imageio" ,python-imageio)
("python-matplotlib" ,python-matplotlib)
("python-networkx" ,python-networkx)
("python-numpy" ,python-numpy)
("python-pillow" ,python-pillow)
("python-pywavelets" ,python-pywavelets)
("python-scipy" ,python-scipy)
- ("python-six" ,python-six)))
+ ("python-six" ,python-six)
+ ("python-tifffile" ,python-tifffile)))
(native-inputs
`(("python-cython" ,python-cython)))
(home-page "https://scikit-image.org/")