Marius Bakke writes: > Danny Milosavljevic writes: > >> * gnu/packages/python.scm (python-click)[native-inputs]: Move to ... >> [propagated-inputs]: ... here. >> --- >> gnu/packages/python.scm | 5 ++--- >> 1 file changed, 2 insertions(+), 3 deletions(-) >> >> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm >> index 8f8b0de72..9c3902c3e 100644 >> --- a/gnu/packages/python.scm >> +++ b/gnu/packages/python.scm >> @@ -9153,9 +9153,8 @@ useful for solving the Assignment Problem.") >> (propagated-inputs >> `(("python-itsdangerous" ,python-itsdangerous) >> ("python-jinja2" ,python-jinja2) >> - ("python-werkzeug" ,python-werkzeug))) >> - (native-inputs >> - `(("python-click" ,python-click))) >> + ("python-werkzeug" ,python-werkzeug) >> + ("python-click" ,python-click))) > > The commit message and diff is contradictory :) Did you mean to make > python-werkzeug a native-input? > The diff here looks correct; Danny removed the native-input line, so the result is that python-werkzeug and python-click are both propagated-inputs. -- Chris