summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-marshmallow_3.24.1.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2025-01-08 11:38:48 +0200
committerKhem Raj <raj.khem@gmail.com>2025-01-08 08:02:09 -0800
commit41abc976d9602ea8397feaf9c57e5c8ad0d1885c (patch)
treee7a4173d0e69b37e11e752f438fcab385cef6639 /meta-python/recipes-devtools/python/python3-marshmallow_3.24.1.bb
parent53ceab0e1f37693871002cf9147501953899a1a3 (diff)
downloadmeta-openembedded-41abc976d9602ea8397feaf9c57e5c8ad0d1885c.tar.gz
python3-marshmallow: Upgrade 3.23.3 -> 3.24.1
Upgrade to release 3.24.1: - Typing: Fix typing for class_registry.get_class From release 3.24.0: - Typing: Improve typings in marshmallow.fields - Typing: Replace type comments with inline typings - Typing: Fix type hint for nested parameter of Nested Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-marshmallow_3.24.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-marshmallow_3.24.1.bb40
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-marshmallow_3.24.1.bb b/meta-python/recipes-devtools/python/python3-marshmallow_3.24.1.bb
new file mode 100644
index 0000000000..0d41e223dd
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-marshmallow_3.24.1.bb
@@ -0,0 +1,40 @@
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] = "efdcb656ac8788f0e3d1d938f8dc0f237bf1a99aff8f6dfbffa594981641cea0"
10
11inherit python_flit_core pypi ptest
12
13SRC_URI += " \
14 file://run-ptest \
15"
16
17RDEPENDS:${PN}-ptest += " \
18 python3-pytest \
19 python3-pytz \
20 python3-simplejson \
21 python3-unittest-automake-output \
22 python3-zoneinfo \
23 python3-tzdata \
24"
25
26do_install_ptest() {
27 install -d ${D}${PTEST_PATH}/tests
28 rm -rf ${S}/tests/mypy_test_cases
29 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
30}
31
32RDEPENDS:${PN} += " \
33 python3-compression \
34 python3-datetime \
35 python3-email \
36 python3-json \
37 python3-numbers \
38 python3-pprint \
39 python3-packaging \
40"