blob: f1c0461470a94a94904726ba9a01f8523422d9df [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
William A. Kennington IIIb95905d2021-06-02 12:40:56 -07009SRC_URI[sha256sum] = "1c4c257b1892aec1398784c63791cbaa43062f1f7aeb555c4da961b20ee68f55"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050010
11PYPI_PACKAGE = "Flask"
12
Andrew Geisslerd688a012020-09-18 13:36:00 -050013inherit pypi setuptools3
14
15CLEANBROKEN = "1"
16
Patrick Williams213cb262021-08-07 19:21:33 -050017RDEPENDS:${PN} = " \
William A. Kennington IIIb95905d2021-06-02 12:40:56 -070018 ${PYTHON_PN}-werkzeug \
19 ${PYTHON_PN}-jinja2 \
20 ${PYTHON_PN}-itsdangerous \
21 ${PYTHON_PN}-click \
22 ${PYTHON_PN}-profile \
23"