summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-08-01 15:41:48 +0800
committerKhem Raj <raj.khem@gmail.com>2023-08-01 08:46:48 -0700
commit1b3c3ae6bba19b634d85bb652fb8b7a41ea563e0 (patch)
tree2f843583fd6ca517d8c0b0c0bbb4812943182f9e /meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb
parent9ba895eb3c4ab19a0ed8e108d0f221736ebef10e (diff)
downloadmeta-openembedded-1b3c3ae6bba19b634d85bb652fb8b7a41ea563e0.tar.gz
python3-marshmallow: upgrade 3.19.0 -> 3.20.1
Changelog: Fix call to get_declared_fields: pass dict_cls again 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.20.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb b/meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb
new file mode 100644
index 0000000000..5024b25122
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-marshmallow_3.20.1.bb
@@ -0,0 +1,28 @@
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."
3AUTHOR = "Marius Kriegerowski <mk@quakesaver.net>"
4HOMEPAGE = "https://github.com/marshmallow-code/marshmallow"
5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "\
7 file://LICENSE;md5=5bccd400dedfa74364481e56aacc0b4a \
8 file://docs/license.rst;md5=13da439ad060419fb7cf364523017cfb"
9
10SRC_URI = "git://github.com/marshmallow-code/marshmallow.git;protocol=https;branch=dev"
11
12SRCREV = "dda9a8014dfe1bcb35e21307cfd5a8e19615a284"
13
14S = "${WORKDIR}/git"
15
16inherit setuptools3
17
18PIP_INSTALL_PACKAGE = "marshmallow"
19
20RDEPENDS:${PN} += " \
21 python3-core \
22 python3-datetime \
23 python3-netclient \
24 python3-numbers \
25 python3-json \
26 python3-pprint \
27 python3-packaging \
28"