diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-16 20:32:13 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-15 22:31:39 +0100 |
commit | ddd1dc3d2d6728bfe55fb7d9f562556c4992b4f8 (patch) | |
tree | 736dec73eed09ba0ebd04486d2c407c5efab19ac | |
parent | b83e23337bcd13b880e3f8bacc371815efec4633 (diff) | |
download | guix-ddd1dc3d2d6728bfe55fb7d9f562556c4992b4f8.tar guix-ddd1dc3d2d6728bfe55fb7d9f562556c4992b4f8.tar.gz |
gnu: python2-scikit-image: Remove needless propagated-input.
* gnu/packages/python.scm: (python2-scikit-image)
[propagated-inputs]: Remove python-pytz, it does not occur anywhere in
the source.
-rw-r--r-- | gnu/packages/python.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index f3ac670f9f..00a323fb37 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2983,10 +2983,7 @@ mining and data analysis.") (package (inherit scikit-image) (native-inputs `(("python2-mock" ,python2-mock) - ,@(package-native-inputs scikit-image))) - (propagated-inputs - `(("python2-pytz" ,python2-pytz) - ,@(package-propagated-inputs scikit-image)))))) + ,@(package-native-inputs scikit-image)))))) (define-public python-redis (package |