summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
diff options
context:
space:
mode:
authorXu Huan <xuhuan.fnst@fujitsu.com>2021-12-02 11:41:37 +0800
committerKhem Raj <raj.khem@gmail.com>2021-12-06 09:56:20 -0800
commitbdd244a6c1dc949bec0ce738b7c131ee4a1cc512 (patch)
treefe013846c07debe41210349e0b8652329ba55504 /meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
parent6d81831c79f448feea67ab2fb69d87b9a6b9de1d (diff)
downloadmeta-openembedded-bdd244a6c1dc949bec0ce738b7c131ee4a1cc512.tar.gz
python3-pymongo: upgrade 3.12.0 -> 4.0
See changelog: https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pymongo_4.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pymongo_4.0.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymongo_4.0.bb b/meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
new file mode 100644
index 0000000000..ea057c1804
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pymongo_4.0.bb
@@ -0,0 +1,30 @@
1SUMMARY = "Python driver for MongoDB <http://www.mongodb.org>"
2DESCRIPTION = "\
3The PyMongo distribution contains tools for interacting with MongoDB \
4database from Python. The bson package is an implementation of the BSON \
5format for Python. The pymongo package is a native Python driver for \
6MongoDB. The gridfs package is a gridfs implementation on top of pymongo."
7HOMEPAGE = "http://github.com/mongodb/mongo-python-driver"
8LICENSE = "Apache-2.0"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
10
11SRC_URI[sha256sum] = "6d158eadba3aaab276a3b188b7f467ab0384b68c1d31cfa87335e52addd9dcb6"
12
13inherit pypi setuptools3
14
15PACKAGES =+ "${PYTHON_PN}-bson"
16
17FILES:${PYTHON_PN}-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*"
18
19RDEPENDS:${PYTHON_PN}-bson += " \
20 ${PYTHON_PN}-datetime \
21 ${PYTHON_PN}-json \
22 ${PYTHON_PN}-netclient \
23 ${PYTHON_PN}-numbers \
24 ${PYTHON_PN}-threading \
25"
26
27RDEPENDS:${PN} += " \
28 ${PYTHON_PN}-bson \
29 ${PYTHON_PN}-pprint \
30"