From: Jan Vermaete Date: Sat, 22 Jun 2024 06:14:38 +0000 (+0200) Subject: python3-websockets: added python3-zipp as RDEPENDS X-Git-Tag: uninative-4.6~194 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b70884c4c9406084c690b6090810494e91dca37;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git python3-websockets: added python3-zipp as RDEPENDS Because the Python package 'zipfile' was missing. root@qemux86-64:~# python3 clTraceback (most recent call last): File "/home/root/server.py", line 4, in from websockets.server import serve File "/usr/lib/python3.12/site-packages/websockets/__init__.py", line 6, in from .version import version as __version__ # noqa: F401 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/websockets/version.py", line 3, in import importlib.metadata File "/usr/lib/python3.12/importlib/metadata/__init__.py", line 8, in import zipfile ModuleNotFoundError: No module named 'zipfile' Signed-off-by: Jan Vermaete Signed-off-by: Alexandre Belloni --- diff --git a/meta/recipes-devtools/python/python3-websockets_12.0.bb b/meta/recipes-devtools/python/python3-websockets_12.0.bb index f89c3b629ee..1bebcb4ce65 100644 --- a/meta/recipes-devtools/python/python3-websockets_12.0.bb +++ b/meta/recipes-devtools/python/python3-websockets_12.0.bb @@ -13,4 +13,5 @@ BBCLASSEXTEND = "native nativesdk" RDEPENDS:${PN} = " \ python3-asyncio \ python3-profile \ + python3-zipp \ "