htgoebel pushed a commit to branch wip-python-build-system in repository guix.
commit 16ad6e01caa9b7f5742126773b2ae85f6f31712b Author: Hartmut Goebel <[email protected]> Date: Sun Oct 16 23:37:21 2016 +0200 python-wsgi-intercept: Correct inputs. native: add urllib3 httplib2, requests -> native six -> propagated --- gnu/packages/python.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 552dd13..4028bab 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7111,12 +7111,13 @@ framework which enables you to test server connections locally.") (base32 "0kjj2v2dvmnpdd5h5gk9rzz0f54rhjb0yiz3zg65bmp65slfw65d")))) (build-system python-build-system) + (propagated-inputs + `(("python-six" ,python-six))) (native-inputs `(("python-pytest" ,python-pytest) - ("python-six" ,python-six))) - (propagated-inputs - `(("python-httplib2" ,python-httplib2) - ("python-requests" ,python-requests))) + ("python-httplib2" ,python-httplib2) + ("python-requests" ,python-requests) + ("python-urllib3" ,python-urllib3))) (synopsis "Puts a WSGI application in place of a real URI for testing") (description "Wsgi_intercept installs a WSGI application in place of a real URI for testing. Testing a WSGI application normally involves starting a
