diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-06 17:00:28 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-15 22:31:32 +0100 |
commit | d5e41cf28ca400cc1ce060945518f77cc9efc818 (patch) | |
tree | f3bc000e2744dc6d8c0c61da26374d9cb05e02c8 | |
parent | 8e73d3baabbf17eb4e0fab56063c6d9b9c14aab2 (diff) | |
download | guix-d5e41cf28ca400cc1ce060945518f77cc9efc818.tar guix-d5e41cf28ca400cc1ce060945518f77cc9efc818.tar.gz |
gnu: pytest-mock: remove needless propagated input "python-py".
This is not listed as an requirement and is already propagated by
python-pytest.
* gnu/packages/python.scm (python-pytest-mock, python2-pytest-mock):
[propagated-inputs]: Remove python-py.
-rw-r--r-- | gnu/packages/python.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 770603db58..d50a4bdf4e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1750,8 +1750,7 @@ supports coverage of subprocesses.") (native-inputs `(("unzip" ,unzip))) (propagated-inputs - `(("python-py" ,python-py) - ("python-pytest" ,python-pytest))) + `(("python-pytest" ,python-pytest))) (home-page "https://github.com/pytest-dev/pytest-mock/") (synopsis "Thin-wrapper around the mock package for easier use with py.test") (description |