aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Wickert <fw@javox-solutions.com>2018-05-02 18:19:48 +0200
committerArmin Kuster <akuster808@gmail.com>2018-06-14 19:45:23 -0700
commit706aa43a6926c69a5f9fa27fe88ecab7e11e49e4 (patch)
treee5a8db24004d7305c6e01c6c5b10fd311523ea87
parent579b8352b2637067579b857977ebd6eaa511d37e (diff)
downloadmeta-python2-706aa43a6926c69a5f9fa27fe88ecab7e11e49e4.tar.gz
Add missing dependency for python-flask packages.
The module werkzeug.test is moved to the python-werkzeug-tests package since commit 4c8fe34. Flask imports werkzeug.tests during exception handling which results in "ImportError: No module named 'werkzeug.test'". (From meta-openembedded commit: f5418557bff8ed7cbd3531e29dc596ec12dcd064) Signed-off-by: Florian Wickert <fw@javox-solutions.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> (cherry picked from commit 0d2305d45208e2bca9417343230516a809bae918) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Tim Orling <ticotimo@gmail.com>
-rw-r--r--recipes-devtools/python/python-flask.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/python/python-flask.inc b/recipes-devtools/python/python-flask.inc
index 76b5fba..ecf5619 100644
--- a/recipes-devtools/python/python-flask.inc
+++ b/recipes-devtools/python/python-flask.inc
@@ -13,4 +13,4 @@ CLEANBROKEN = "1"
PYPI_PACKAGE = "Flask"
-RDEPENDS_${PN} = "${PYTHON_PN}-werkzeug ${PYTHON_PN}-jinja2 ${PYTHON_PN}-itsdangerous ${PYTHON_PN}-click"
+RDEPENDS_${PN} = "${PYTHON_PN}-werkzeug ${PYTHON_PN}-werkzeug-tests ${PYTHON_PN}-jinja2 ${PYTHON_PN}-itsdangerous ${PYTHON_PN}-click"