blob: b5277f1c91fa17acab6cc4c980d8aad1516dd88b [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "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"
Brad Bishop316dfdd2018-06-25 12:45:53 -04009LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050010
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011SRC_URI[md5sum] = "7449c81a6c32c3c8cb9bebebc848fded"
12SRC_URI[sha256sum] = "f14fb6c4058772a0d74d82874d3b89d7264d89b4ed7fa0413ea0ef8112b268b9"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013
14PACKAGES =+ "${PYTHON_PN}-bson"
15
16FILES_${PYTHON_PN}-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*"
17
18RDEPENDS_${PYTHON_PN}-bson += " \
19 ${PYTHON_PN}-datetime \
Brad Bishop316dfdd2018-06-25 12:45:53 -040020 ${PYTHON_PN}-json \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021 ${PYTHON_PN}-netclient \
22 ${PYTHON_PN}-numbers \
23 ${PYTHON_PN}-threading \
24"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050025
26RDEPENDS_${PN} += " \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050027 ${PYTHON_PN}-bson \
Brad Bishop316dfdd2018-06-25 12:45:53 -040028 ${PYTHON_PN}-pprint \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050029"