summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pymongo_3.11.3.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-02-04 15:19:39 +0200
committerKhem Raj <raj.khem@gmail.com>2021-02-05 10:26:11 -0800
commit6d38a68d42fbf04625e0a6d49013b4c94622be56 (patch)
tree110e0c893ec8164758606a70a5198b0930eea8e6 /meta-python/recipes-devtools/python/python3-pymongo_3.11.3.bb
parent8ccfa76f8212df3d8d6bd8f398c831cb20590e3d (diff)
downloadmeta-openembedded-6d38a68d42fbf04625e0a6d49013b4c94622be56.tar.gz
python3-pymongo: Upgrade 3.11.2 -> 3.11.3
Upgrade to release 3.11.3: - Fix benchmark when using Python 3 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pymongo_3.11.3.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pymongo_3.11.3.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymongo_3.11.3.bb b/meta-python/recipes-devtools/python/python3-pymongo_3.11.3.bb
new file mode 100644
index 0000000000..3549adce7c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pymongo_3.11.3.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] = "db5098587f58fbf8582d9bda2462762b367207246d3e19623782fb449c3c5fcc"
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"