blob: 23799617fe741d658b01469554ae787d304106db [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "A microframework based on Werkzeug, Jinja2 and good intentions"
2DESCRIPTION = "\
3Flask is a microframework for Python based on Werkzeug, Jinja 2 and good \
4intentions. And before you ask: It’s BSD licensed!"
5HOMEPAGE = "https://github.com/mitsuhiko/flask/"
Brad Bishop2d39a062019-10-28 08:33:36 -04006LICENSE = "BSD-3-Clause"
Brad Bishop87b3cb82019-11-15 16:35:37 -05007LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
Patrick Williamsb48b7b42016-08-17 15:04:38 -05008
Andrew Geisslerd688a012020-09-18 13:36:00 -05009SRC_URI[md5sum] = "0da4145d172993cd28a6c619630cc19c"
10SRC_URI[sha256sum] = "4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050011
12PYPI_PACKAGE = "Flask"
13
Andrew Geisslerd688a012020-09-18 13:36:00 -050014inherit pypi setuptools3
15
16CLEANBROKEN = "1"
17
Brad Bishopdec060e2019-09-23 08:01:31 -040018RDEPENDS_${PN} = "${PYTHON_PN}-werkzeug ${PYTHON_PN}-jinja2 ${PYTHON_PN}-itsdangerous ${PYTHON_PN}-click"