diff options
author | Konrad Weihmann <kweihmann@outlook.com> | 2021-12-24 12:01:18 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-01-04 08:40:52 -0800 |
commit | cffe78bfe1addb95b6b40242a8476f81255f4c20 (patch) | |
tree | 81f264234761fcb2a1ae3f0731464e46f8baed0d /meta-python/recipes-devtools/python | |
parent | fd375acec670cef3bbdc464331e1ff0651085f88 (diff) | |
download | meta-openembedded-cffe78bfe1addb95b6b40242a8476f81255f4c20.tar.gz |
python3-wtforms: add missing dependencies
like python3-babel a setup time and markupsafe at runtime
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-wtforms_3.0.0.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-wtforms_3.0.0.bb b/meta-python/recipes-devtools/python/python3-wtforms_3.0.0.bb index b63be82038..c72af74513 100644 --- a/meta-python/recipes-devtools/python/python3-wtforms_3.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-wtforms_3.0.0.bb | |||
@@ -2,6 +2,8 @@ DESCRIPTION = "A flexible forms validation and rendering library for python web | |||
2 | HOMEPAGE = "https://pypi.python.org/pypi/WTForms" | 2 | HOMEPAGE = "https://pypi.python.org/pypi/WTForms" |
3 | SECTION = "devel/python" | 3 | SECTION = "devel/python" |
4 | LICENSE = "BSD-3-Clause" | 4 | LICENSE = "BSD-3-Clause" |
5 | |||
6 | |||
5 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a9f8f0d527c043d" | 7 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=53dbfa56f61b90215a9f8f0d527c043d" |
6 | 8 | ||
7 | SRC_URI[sha256sum] = "4abfbaa1d529a1d0ac927d44af8dbb9833afd910e56448a103f1893b0b176886" | 9 | SRC_URI[sha256sum] = "4abfbaa1d529a1d0ac927d44af8dbb9833afd910e56448a103f1893b0b176886" |
@@ -12,9 +14,11 @@ inherit pypi setuptools3 | |||
12 | 14 | ||
13 | DEPENDS += "\ | 15 | DEPENDS += "\ |
14 | ${PYTHON_PN}-pip-native \ | 16 | ${PYTHON_PN}-pip-native \ |
17 | ${PYTHON_PN}-babel-native \ | ||
15 | " | 18 | " |
16 | 19 | ||
17 | RDEPENDS:${PN} += "\ | 20 | RDEPENDS:${PN} += "\ |
18 | ${PYTHON_PN}-netserver \ | 21 | ${PYTHON_PN}-netserver \ |
19 | ${PYTHON_PN}-numbers \ | 22 | ${PYTHON_PN}-numbers \ |
23 | ${PYTHON_PN}-markupsafe \ | ||
20 | " | 24 | " |