diff options
| author | Jan Vermaete <jan.vermaete@gmail.com> | 2024-06-22 08:14:38 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-06-26 14:33:42 +0100 |
| commit | 75031624f77cfec94e099f6f3ca215bdd45262c8 (patch) | |
| tree | 6720ad09c07c87275456ce571c1811db5c1a2618 /meta/recipes-devtools | |
| parent | d876223293276d9fd1c94daf92413cdec5c00d15 (diff) | |
| download | poky-75031624f77cfec94e099f6f3ca215bdd45262c8.tar.gz | |
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 <module>
from websockets.server import serve
File "/usr/lib/python3.12/site-packages/websockets/__init__.py", line 6, in <module>
from .version import version as __version__ # noqa: F401
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/site-packages/websockets/version.py", line 3, in <module>
import importlib.metadata
File "/usr/lib/python3.12/importlib/metadata/__init__.py", line 8, in <module>
import zipfile
ModuleNotFoundError: No module named 'zipfile'
(From OE-Core rev: 2b70884c4c9406084c690b6090810494e91dca37)
Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
| -rw-r--r-- | meta/recipes-devtools/python/python3-websockets_12.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
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" | |||
| 13 | RDEPENDS:${PN} = " \ | 13 | RDEPENDS:${PN} = " \ |
| 14 | python3-asyncio \ | 14 | python3-asyncio \ |
| 15 | python3-profile \ | 15 | python3-profile \ |
| 16 | python3-zipp \ | ||
| 16 | " | 17 | " |
