htgoebel pushed a commit to branch wip-python-build-system in repository guix.
commit f96fffc9511ea905e1d421acb66bdfadfbb3bd67 Author: Hartmut Goebel <[email protected]> Date: Sun Oct 2 23:13:17 2016 +0200 gnu: python-pytest: Propagate input "python-py". * gnu/packages/python.scm (python-pytest): Move "python-py" from inputs to propagated-inputs. --- gnu/packages/python.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 73a1cd1..5ca9085 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1560,9 +1560,10 @@ code introspection, and logging.") (("def test_remove_dir_prefix\\(self\\):") "@pytest.mark.xfail\n def test_remove_dir_prefix(self):"))))) (build-system python-build-system) + (propagated-inputs + `(("python-py" ,python-py))) (inputs - `(("python-py" ,python-py) - ("python-nose" ,python-nose) + `(("python-nose" ,python-nose) ("python-mock" ,python-mock))) (home-page "http://pytest.org") (synopsis "Python testing library")
