summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-marshmallow_3.21.3.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-06-25 16:56:08 +0800
committerKhem Raj <raj.khem@gmail.com>2024-06-27 09:18:59 -0700
commit532b4b699d4b4b060a8b5c3b697167d3a0af43c3 (patch)
tree30ea6113d8673ed19a8399cbbabf5f5005061261 /meta-python/recipes-devtools/python/python3-marshmallow_3.21.3.bb
parenta52c699e74ee795ac6c18b0d2e1119aa4bccb706 (diff)
downloadmeta-openembedded-532b4b699d4b4b060a8b5c3b697167d3a0af43c3.tar.gz
python3-marshmallow: upgrade 3.21.2 -> 3.21.3
Changelog: ============ Fix memory leak that prevented schema instances from getting GC'd Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-marshmallow_3.21.3.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-marshmallow_3.21.3.bb38
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-marshmallow_3.21.3.bb b/meta-python/recipes-devtools/python/python3-marshmallow_3.21.3.bb
new file mode 100644
index 0000000000..9c29c810d4
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-marshmallow_3.21.3.bb
@@ -0,0 +1,38 @@
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] = "4f57c5e050a54d66361e826f94fba213eb10b67b2fdb02c3e0343ce207ba1662"
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"
23
24do_install_ptest() {
25 install -d ${D}${PTEST_PATH}/tests
26 rm -rf ${S}/tests/mypy_test_cases
27 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
28}
29
30RDEPENDS:${PN} += " \
31 python3-compression \
32 python3-datetime \
33 python3-email \
34 python3-json \
35 python3-numbers \
36 python3-pprint \
37 python3-packaging \
38"