diff options
author | Richard Leitner <dev@g0hl1n.net> | 2024-01-30 22:07:34 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-01-30 14:34:43 -0800 |
commit | 48c7cd6d11d966c21e89a252e622ec1f0f5382ed (patch) | |
tree | 111f59e1b30d455d0f34f6de59ee64afbd6f8627 | |
parent | 9ae4f0695d099ec0d94f157246a598f76b0c88d4 (diff) | |
download | meta-openembedded-48c7cd6d11d966c21e89a252e622ec1f0f5382ed.tar.gz |
python3-janus: add recipe for v1.0.0
janus is a python library providing a mixed sync-async queue to
interoperate between asyncio tasks and classic threads. This recipe uses
pypi as source:
https://pypi.org/project/janus/
Signed-off-by: Richard Leitner <dev@g0hl1n.net>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-janus_1.0.0.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-janus_1.0.0.bb b/meta-python/recipes-devtools/python/python3-janus_1.0.0.bb new file mode 100644 index 0000000000..c709bcfbff --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-janus_1.0.0.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | SUMMARY = "Mixed sync-async queue to interoperate between asyncio tasks and classic threads" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "Apache-2.0" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=23878c357ebb4c8ce1109be365043349" | ||
5 | |||
6 | SRC_URI[sha256sum] = "df976f2cdcfb034b147a2d51edfc34ff6bfb12d4e2643d3ad0e10de058cb1612" | ||
7 | |||
8 | inherit pypi python_setuptools_build_meta | ||
9 | |||
10 | RDEPENDS:${PN} += "\ | ||
11 | python3-asyncio \ | ||
12 | python3-threading \ | ||
13 | " | ||
14 | |||
15 | BBCLASSEXTEND = "native nativesdk" | ||