summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-marshmallow_4.1.2.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2026-02-05 07:59:43 +0100
committerAnuj Mittal <anuj.mittal@oss.qualcomm.com>2026-02-19 08:20:23 +0530
commita1538075cfe3d77beafe3b8fbb4b99be4d28ab5b (patch)
treeeb42ab142cbf658fcd1d05a5e0adc2afccbe67d6 /meta-python/recipes-devtools/python/python3-marshmallow_4.1.2.bb
parentb67599470c258968e4a01ea91b3c9030784d7e70 (diff)
downloadmeta-openembedded-a1538075cfe3d77beafe3b8fbb4b99be4d28ab5b.tar.gz
python3-marshmallow: upgrade 4.1.1 -> 4.1.2
Changelog: Merge error store messages without rebuilding collections. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 54691ea40a98cc617d374d8368c665d103ceaf07) Contains fix for CVE-2025-68480 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-marshmallow_4.1.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-marshmallow_4.1.2.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-marshmallow_4.1.2.bb b/meta-python/recipes-devtools/python/python3-marshmallow_4.1.2.bb
new file mode 100644
index 0000000000..f3a905a36c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-marshmallow_4.1.2.bb
@@ -0,0 +1,32 @@
1SUMMARY = "Simplified object serialization in python"
2DESCRIPTION = "Marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes."
3HOMEPAGE = "https://github.com/marshmallow-code/marshmallow"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "\
6 file://LICENSE;md5=27586b20700d7544c06933afe56f7df4 \
7 file://docs/license.rst;md5=13da439ad060419fb7cf364523017cfb"
8
9SRC_URI[sha256sum] = "083f250643d2e75fd363f256aeb6b1af369a7513ad37647ce4a601f6966e3ba5"
10
11inherit python_flit_core pypi ptest-python-pytest
12
13RDEPENDS:${PN}-ptest += " \
14 python3-pytz \
15 python3-simplejson \
16 python3-zoneinfo \
17 python3-tzdata \
18"
19
20do_install_ptest:append () {
21 rm -rf ${D}${PTEST_PATH}/tests/mypy_test_cases
22}
23
24RDEPENDS:${PN} += " \
25 python3-compression \
26 python3-datetime \
27 python3-email \
28 python3-json \
29 python3-numbers \
30 python3-pprint \
31 python3-packaging \
32"