python-tornado: add missing python2 runtime deps

Tornado 4.3 needs backports_abc and singledispatch backport modules
at runtime to prevent tornado/gen.py from bombing on import errors
when running on python2 rather than python3.4

Signed-off-by: S. Lockwood-Childs <sjl@vctlabs.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
S. Lockwood-Childs
2016-06-02 23:16:30 -07:00
committed by Martin Jansa
parent 7650008ed9
commit b5091a1a34

View File

@@ -1,3 +1,3 @@
inherit pypi setuptools
require python-tornado.inc
RDEPENDS_${PN} += "${PYTHON_PN}-backports-ssl"
RDEPENDS_${PN} += "${PYTHON_PN}-backports-ssl ${PYTHON_PN}-backports-abc ${PYTHON_PN}-singledispatch"