Without additional RDEPENDS module could not be properly imported on python 3.7.4. Additional RDEPENDS had to be added in order to start the most basic examples from documentation: https://python-socketio.readthedocs.io/en/latest/client.html
Signed-off-by: Maciej Pijanowski <[email protected]> --- .../recipes-devtools/python/python-socketio.inc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/meta-python/recipes-devtools/python/python-socketio.inc b/meta-python/recipes-devtools/python/python-socketio.inc index a23e780795c6..c69963f1a6a9 100644 --- a/meta-python/recipes-devtools/python/python-socketio.inc +++ b/meta-python/recipes-devtools/python/python-socketio.inc @@ -12,6 +12,17 @@ PYPI_PACKAGE = "python-socketio" SRC_URI[md5sum] = "0b57da61a9464d2e0dc9a8d0164d86d2" SRC_URI[sha256sum] = "64feb0817f1bf7e3e7fc05f6f65e28d76146d8061cb7de25b63502717f80e908" +PACKAGECONFIG ?= "asyncio_client client" +PACKAGECONFIG[asyncio_client] = ",,,python3-aiohttp python3-websockets" +PACKAGECONFIG[client] = ",,,python3-requests python3-websocket-client" + RDEPENDS_${PN} += "\ ${PYTHON_PN}-engineio \ + ${PYTHON_PN}-logging \ + ${PYTHON_PN}-math \ + ${PYTHON_PN}-pickle \ + ${PYTHON_PN}-json \ + ${PYTHON_PN}-threading \ + ${PYTHON_PN}-six \ + ${PYTHON_PN}-attrs \ " -- 2.20.1 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
