Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | SUMMARY = "Python driver for MongoDB <http://www.mongodb.org>" |
| 2 | DESCRIPTION = "\ |
| 3 | The PyMongo distribution contains tools for interacting with MongoDB \ |
| 4 | database from Python. The bson package is an implementation of the BSON \ |
| 5 | format for Python. The pymongo package is a native Python driver for \ |
| 6 | MongoDB. The gridfs package is a gridfs implementation on top of pymongo." |
| 7 | HOMEPAGE = "http://github.com/mongodb/mongo-python-driver" |
| 8 | LICENSE = "Apache-2.0" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 10 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 11 | SRC_URI[md5sum] = "0d72c87fb93cea0759529befafefce54" |
| 12 | SRC_URI[sha256sum] = "f7ebcb846962ee40374db2d9014a89bea9c983ae63c1877957c3a0a756974796" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 13 | |
| 14 | PACKAGES =+ "${PYTHON_PN}-bson" |
| 15 | |
| 16 | FILES_${PYTHON_PN}-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*" |
| 17 | |
| 18 | RDEPENDS_${PYTHON_PN}-bson += " \ |
| 19 | ${PYTHON_PN}-datetime \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 20 | ${PYTHON_PN}-json \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 21 | ${PYTHON_PN}-netclient \ |
| 22 | ${PYTHON_PN}-numbers \ |
| 23 | ${PYTHON_PN}-threading \ |
| 24 | " |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 25 | |
| 26 | RDEPENDS_${PN} += " \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 27 | ${PYTHON_PN}-bson \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 28 | ${PYTHON_PN}-pprint \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 29 | " |