blob: 7f199b46b0db023066dde64e3e2949d9b1732f62 [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"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=2a944942e1496af1886903d274dedb13"
10
Brad Bishopd7bf8c12018-02-25 22:55:05 -050011SRC_URI[md5sum] = "35ae53073a25603591e085b18bc5a0ec"
12SRC_URI[sha256sum] = "e820d93414f3bec1fa456c84afbd4af1b43ff41366321619db74e6bc065d6924"
13
14PACKAGES =+ "${PYTHON_PN}-bson"
15
16FILES_${PYTHON_PN}-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*"
17
18RDEPENDS_${PYTHON_PN}-bson += " \
19 ${PYTHON_PN}-datetime \
20 ${PYTHON_PN}-netclient \
21 ${PYTHON_PN}-numbers \
22 ${PYTHON_PN}-threading \
23"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050024
25RDEPENDS_${PN} += " \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050026 ${PYTHON_PN}-bson \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050027"