summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2016-10-16 20:41:36 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2016-11-15 22:31:41 +0100
commitcf8124b0177136598b07a8d7d0c68570e182b04b (patch)
tree6aa90c575baa67bafe0ffd854ae8a96a1605e56a /gnu/packages
parent1273359455379895e2ae29ddeb9bcaf3f5001a6d (diff)
downloadguix-patches-cf8124b0177136598b07a8d7d0c68570e182b04b.tar
guix-patches-cf8124b0177136598b07a8d7d0c68570e182b04b.tar.gz
gnu: python-redis: Remove unused input.
* gnu/packages/python.scm (python-redis, python2-redis) Comment out [native-inputs] since these are used only for running tests, which is disabled since it requires a Redis server.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 2da510aff2..b7640dbda0 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2994,8 +2994,9 @@ mining and data analysis.")
(build-system python-build-system)
;; Tests require a running Redis server
(arguments '(#:tests? #f))
- (native-inputs
- `(("python-pytest" ,python-pytest)))
+ ;; As long as we are not running test, we do not need this input :-)
+ ;;(native-inputs
+ ;; `(("python-pytest" ,python-pytest)))
(home-page "https://github.com/andymccurdy/redis-py")
(synopsis "Redis Python client")
(description