python3-pymongo_4.11.3.bb 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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 = "https://github.com/mongodb/mongo-python-driver"
  8. LICENSE = "Apache-2.0"
  9. LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
  10. SRC_URI[sha256sum] = "b6f24aec7c0cfcf0ea9f89e92b7d40ba18a1e18c134815758f111ecb0122e61c"
  11. inherit pypi python_setuptools_build_meta python_hatchling
  12. PACKAGES =+ "python3-bson"
  13. FILES:python3-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*"
  14. DEPENDS += " \
  15. python3-hatch-requirements-txt-native \
  16. "
  17. RDEPENDS:python3-bson += " \
  18. python3-datetime \
  19. python3-json \
  20. python3-netclient \
  21. python3-numbers \
  22. python3-threading \
  23. "
  24. RDEPENDS:${PN} += " \
  25. python3-bson \
  26. python3-pprint \
  27. python3-difflib \
  28. python3-logging \
  29. "