python3-flask_3.1.0.bb 975 B

123456789101112131415161718192021222324252627282930313233343536
  1. SUMMARY = "A microframework based on Werkzeug, Jinja2 and good intentions"
  2. DESCRIPTION = "\
  3. Flask is a microframework for Python based on Werkzeug, Jinja 2 and good \
  4. intentions. And before you ask: It’s BSD licensed!"
  5. HOMEPAGE = "https://github.com/mitsuhiko/flask/"
  6. LICENSE = "BSD-3-Clause"
  7. LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
  8. SRC_URI[sha256sum] = "5f873c5184c897c8d9d1b05df1e3d01b14910ce69607a117bd3277098a5836ac"
  9. SRC_URI += " \
  10. file://run-ptest \
  11. "
  12. inherit pypi python_setuptools_build_meta ptest
  13. CLEANBROKEN = "1"
  14. RDEPENDS:${PN} = " \
  15. python3-blinker \
  16. python3-click \
  17. python3-importlib-metadata \
  18. python3-itsdangerous \
  19. python3-jinja2 \
  20. python3-werkzeug \
  21. "
  22. RDEPENDS:${PN}-ptest += "\
  23. python3-asgiref \
  24. python3-pytest \
  25. python3-unittest-automake-output \
  26. "
  27. do_install_ptest() {
  28. install -d ${D}${PTEST_PATH}/tests
  29. cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
  30. }