From 75031624f77cfec94e099f6f3ca215bdd45262c8 Mon Sep 17 00:00:00 2001 From: Jan Vermaete Date: Sat, 22 Jun 2024 08:14:38 +0200 Subject: [PATCH] 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' (From OE-Core rev: 2b70884c4c9406084c690b6090810494e91dca37) Signed-off-by: Jan Vermaete Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- meta/recipes-devtools/python/python3-websockets_12.0.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-devtools/python/python3-websockets_12.0.bb b/meta/recipes-devtools/python/python3-websockets_12.0.bb index f89c3b629e..1bebcb4ce6 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 \ "