diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3-jinja2_3.1.6.bb')
-rw-r--r-- | meta/recipes-devtools/python/python3-jinja2_3.1.6.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-jinja2_3.1.6.bb b/meta/recipes-devtools/python/python3-jinja2_3.1.6.bb new file mode 100644 index 0000000000..2e96eb0dcb --- /dev/null +++ b/meta/recipes-devtools/python/python3-jinja2_3.1.6.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | SUMMARY = "Python Jinja2: A small but fast and easy to use stand-alone template engine written in pure python." | ||
2 | HOMEPAGE = "https://pypi.org/project/Jinja2/" | ||
3 | |||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5dc88300786f1c214c1e9827a5229462" | ||
6 | |||
7 | SRC_URI[sha256sum] = "0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d" | ||
8 | |||
9 | PYPI_PACKAGE = "jinja2" | ||
10 | |||
11 | CVE_PRODUCT = "jinja2 jinja" | ||
12 | |||
13 | CLEANBROKEN = "1" | ||
14 | |||
15 | inherit pypi python_flit_core ptest-python-pytest | ||
16 | |||
17 | do_install_ptest:append() { | ||
18 | # test_async items require trio module | ||
19 | rm -f ${D}${PTEST_PATH}/tests/test_async.py ${D}${PTEST_PATH}/tests/test_async_filters.py | ||
20 | } | ||
21 | |||
22 | RDEPENDS:${PN}-ptest += " \ | ||
23 | python3-unixadmin \ | ||
24 | " | ||
25 | |||
26 | RDEPENDS:${PN} += " \ | ||
27 | python3-asyncio \ | ||
28 | python3-crypt \ | ||
29 | python3-io \ | ||
30 | python3-json \ | ||
31 | python3-markupsafe \ | ||
32 | python3-math \ | ||
33 | python3-netclient \ | ||
34 | python3-numbers\ | ||
35 | python3-pickle \ | ||
36 | python3-pprint \ | ||
37 | python3-shell \ | ||
38 | python3-threading \ | ||
39 | " | ||
40 | |||
41 | BBCLASSEXTEND = "native nativesdk" | ||