summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pymongo_4.17.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2026-04-30 18:49:03 +0800
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-05-07 10:45:45 -0700
commit4251956467c8bf6ca7204c4d7c56ccd351ec06d6 (patch)
tree33dceceb77eab789699c39690d444284d9eb9585 /meta-python/recipes-devtools/python/python3-pymongo_4.17.0.bb
parentd50d1c4df2b13fe1286b44b76624fb52bd0d5fd3 (diff)
downloadmeta-openembedded-4251956467c8bf6ca7204c4d7c56ccd351ec06d6.tar.gz
python3-pymongo: upgrade 4.16.0 -> 4.17.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pymongo_4.17.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pymongo_4.17.0.bb38
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymongo_4.17.0.bb b/meta-python/recipes-devtools/python/python3-pymongo_4.17.0.bb
new file mode 100644
index 0000000000..663de17352
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pymongo_4.17.0.bb
@@ -0,0 +1,38 @@
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 = "https://github.com/mongodb/mongo-python-driver"
8LICENSE = "Apache-2.0"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
10
11SRC_URI[sha256sum] = "70ffa08ba641468cc068cf46c06b34f01a8ce3489f6411309fcb5ceabe6b2fc0"
12
13CVE_PRODUCT = "pymongo"
14
15inherit pypi python_hatchling
16
17PACKAGES =+ "python3-bson"
18
19FILES:python3-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*"
20
21DEPENDS += " \
22 python3-hatch-requirements-txt-native \
23"
24
25RDEPENDS:python3-bson += " \
26 python3-datetime \
27 python3-json \
28 python3-netclient \
29 python3-numbers \
30 python3-threading \
31"
32
33RDEPENDS:${PN} += " \
34 python3-bson \
35 python3-pprint \
36 python3-difflib \
37 python3-logging \
38"