summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pymongo_4.16.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2026-01-13 18:23:28 +0800
committerKhem Raj <raj.khem@gmail.com>2026-01-13 08:29:01 -0800
commit719fba40ee94ecbb1a783e3302275002d76907f6 (patch)
tree719343507746cbc0611b2747278abf7e7aab8c05 /meta-python/recipes-devtools/python/python3-pymongo_4.16.0.bb
parent950e4abfc9a2b9c9e1508f67db7b9b37ae2373ce (diff)
downloadmeta-openembedded-719fba40ee94ecbb1a783e3302275002d76907f6.tar.gz
python3-pymongo: upgrade 4.15.5 -> 4.16.0
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-pymongo_4.16.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pymongo_4.16.0.bb38
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymongo_4.16.0.bb b/meta-python/recipes-devtools/python/python3-pymongo_4.16.0.bb
new file mode 100644
index 0000000000..75d0504d46
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pymongo_4.16.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] = "8ba8405065f6e258a6f872fe62d797a28f383a12178c7153c01ed04e845c600c"
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"