diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2024-03-06 07:42:21 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-03-07 17:25:02 +0000 |
| commit | 18c5cba3ad4feb92638a760f008132c9b3dd6cf3 (patch) | |
| tree | a45b0110e8c4371aa45e242188b630732333b958 /meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb | |
| parent | 316f1fc852a4a42862d1b1ce0b8c37ee97e8c350 (diff) | |
| download | poky-18c5cba3ad4feb92638a760f008132c9b3dd6cf3.tar.gz | |
python3-jsonschema: upgrade 4.17.3 -> 4.21.1 and add new dependencies
(From OE-Core rev: 61401c6c82b4e717fcec3810dd9ee5ee61292696)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb b/meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb new file mode 100644 index 0000000000..381148f4bb --- /dev/null +++ b/meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | SUMMARY = "An implementation of JSON Schema validation for Python" | ||
| 2 | HOMEPAGE = "https://github.com/python-jsonschema/jsonschema" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=7a60a81c146ec25599a3e1dabb8610a8 \ | ||
| 5 | file://json/LICENSE;md5=9d4de43111d33570c8fe49b4cb0e01af" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5" | ||
| 8 | |||
| 9 | inherit pypi python_hatchling | ||
| 10 | |||
| 11 | PACKAGES =+ "${PN}-tests" | ||
| 12 | FILES:${PN}-tests = "${libdir}/${PYTHON_DIR}/site-packages/jsonschema/tests" | ||
| 13 | |||
| 14 | DEPENDS += "python3-hatch-fancy-pypi-readme-native python3-hatch-vcs-native " | ||
| 15 | |||
| 16 | PACKAGECONFIG ??= "format" | ||
| 17 | PACKAGECONFIG[format] = ",,,\ | ||
| 18 | python3-idna \ | ||
| 19 | python3-jsonpointer \ | ||
| 20 | python3-webcolors \ | ||
| 21 | python3-rfc3987 \ | ||
| 22 | python3-rfc3339-validator \ | ||
| 23 | " | ||
| 24 | PACKAGECONFIG[nongpl] = ",,,\ | ||
| 25 | python3-idna \ | ||
| 26 | python3-jsonpointer \ | ||
| 27 | python3-webcolors \ | ||
| 28 | python3-rfc3986-validator \ | ||
| 29 | python3-rfc3339-validator \ | ||
| 30 | " | ||
| 31 | |||
| 32 | RDEPENDS:${PN} += " \ | ||
| 33 | python3-attrs \ | ||
| 34 | python3-core \ | ||
| 35 | python3-datetime \ | ||
| 36 | python3-importlib-metadata \ | ||
| 37 | python3-io \ | ||
| 38 | python3-json \ | ||
| 39 | python3-jsonschema-specifications \ | ||
| 40 | python3-netclient \ | ||
| 41 | python3-numbers \ | ||
| 42 | python3-pprint \ | ||
| 43 | python3-pyrsistent \ | ||
| 44 | python3-referencing \ | ||
| 45 | python3-zipp \ | ||
| 46 | " | ||
| 47 | |||
| 48 | RDEPENDS:${PN}-tests = "${PN}" | ||
| 49 | |||
| 50 | BBCLASSEXTEND = "native nativesdk" | ||
