diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-16 20:41:36 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-15 22:31:41 +0100 |
commit | cf8124b0177136598b07a8d7d0c68570e182b04b (patch) | |
tree | 6aa90c575baa67bafe0ffd854ae8a96a1605e56a | |
parent | 1273359455379895e2ae29ddeb9bcaf3f5001a6d (diff) | |
download | guix-cf8124b0177136598b07a8d7d0c68570e182b04b.tar guix-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.
-rw-r--r-- | gnu/packages/python.scm | 5 |
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 |