python3-google-auth_2.36.0.bb 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. DESCRIPTION = "Google Authentication Library"
  2. HOMEPAGE = "https://github.com/googleapis/google-auth-library-python"
  3. LICENSE = "Apache-2.0"
  4. LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
  5. inherit pypi setuptools3 ptest
  6. SRC_URI[sha256sum] = "545e9618f2df0bcbb7dcbc45a546485b1212624716975a1ea5ae8149ce769ab1"
  7. SRC_URI += " \
  8. file://run-ptest \
  9. "
  10. PYPI_PACKAGE = "google_auth"
  11. UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
  12. RDEPENDS:${PN}-ptest += " \
  13. python3-aioresponses \
  14. python3-cryptography \
  15. python3-flask \
  16. python3-freezegun \
  17. python3-grpcio \
  18. python3-mock \
  19. python3-pyopenssl \
  20. python3-pytest \
  21. python3-pytest-asyncio \
  22. python3-pytest-localserver \
  23. python3-pyu2f \
  24. python3-requests \
  25. python3-responses \
  26. python3-unittest-automake-output \
  27. python3-unixadmin \
  28. "
  29. do_install_ptest() {
  30. install -d ${D}${PTEST_PATH}/tests
  31. cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
  32. }
  33. RDEPENDS:${PN} += "\
  34. python3-cachetools \
  35. python3-json \
  36. python3-pyasn1-modules \
  37. python3-rsa \
  38. "