htgoebel pushed a commit to branch wip-python-build-system in repository guix.
commit 13ba50e2021aef3e2bca6971bc5c76661d60fed4 Author: Hartmut Goebel <[email protected]> Date: Mon Oct 17 00:26:20 2016 +0200 gnu: python-responses: Correct inputs * gnu/packages/python.scm(python-responses)[native-inputs] move python-cookies to [propagated-inputs] --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 69fea24..19a253d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8407,10 +8407,10 @@ Python.") ;; https://github.com/getsentry/responses/issues/38 #:tests? #f)) (native-inputs - `(("python-cookies" ,python-cookies) - ("python-mock" ,python-mock))) + `(("python-mock" ,python-mock))) (propagated-inputs `(("python-requests" ,python-requests) + ("python-cookies" ,python-cookies) ("python-six" ,python-six))) (home-page "https://github.com/getsentry/responses") (synopsis "Utility for mocking out the `requests` Python library")
