summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-jsonschema_4.23.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-07-29 09:09:51 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-08-03 07:47:35 +0100
commitb0e8ea601bb6a798f7095c53e49f3a310d68e198 (patch)
tree9fda885c38ed1d1ee2b7be65575300c532252fb3 /meta/recipes-devtools/python/python3-jsonschema_4.23.0.bb
parenteaa5e2427c7ed887c25c51964170fd70b142ff1e (diff)
downloadpoky-b0e8ea601bb6a798f7095c53e49f3a310d68e198.tar.gz
python3-jsonschema: upgrade 4.22.0 -> 4.23.0
Changelog: =========== - Do not reorder dictionaries (schemas, instances) that are printed as part of validation errors. - Declare support for Py3.13 (From OE-Core rev: 716a45d194257d30a32e06d7e73dedeef3a677f6) Signed-off-by: Wang Mingyu <wangmy@fujitsu.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/python/python3-jsonschema_4.23.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-jsonschema_4.23.0.bb49
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-jsonschema_4.23.0.bb b/meta/recipes-devtools/python/python3-jsonschema_4.23.0.bb
new file mode 100644
index 0000000000..126258255d
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-jsonschema_4.23.0.bb
@@ -0,0 +1,49 @@
1SUMMARY = "An implementation of JSON Schema validation for Python"
2HOMEPAGE = "https://github.com/python-jsonschema/jsonschema"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://COPYING;md5=7a60a81c146ec25599a3e1dabb8610a8 \
5 file://json/LICENSE;md5=9d4de43111d33570c8fe49b4cb0e01af"
6
7SRC_URI[sha256sum] = "d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"
8
9inherit pypi python_hatchling
10
11PACKAGES =+ "${PN}-tests"
12FILES:${PN}-tests = "${libdir}/${PYTHON_DIR}/site-packages/jsonschema/tests"
13
14DEPENDS += "python3-hatch-fancy-pypi-readme-native python3-hatch-vcs-native "
15
16PACKAGECONFIG ??= "format"
17PACKAGECONFIG[format] = ",,,\
18 python3-idna \
19 python3-jsonpointer \
20 python3-webcolors \
21 python3-rfc3987 \
22 python3-rfc3339-validator \
23"
24PACKAGECONFIG[format-nongpl] = ",,,\
25 python3-idna \
26 python3-jsonpointer \
27 python3-webcolors \
28 python3-rfc3986-validator \
29 python3-rfc3339-validator \
30"
31
32RDEPENDS:${PN} += " \
33 python3-attrs \
34 python3-core \
35 python3-datetime \
36 python3-io \
37 python3-json \
38 python3-jsonschema-specifications \
39 python3-netclient \
40 python3-numbers \
41 python3-pprint \
42 python3-pyrsistent \
43 python3-referencing \
44 python3-zipp \
45"
46
47RDEPENDS:${PN}-tests = "${PN}"
48
49BBCLASSEXTEND = "native nativesdk"