Merge pull request #12342 from PolynomialDivision/feature/add_dawn_node_exporter
[feed/packages.git] / lang / python / Flask / Makefile
1 # This is free software, licensed under the GNU General Public License v2.
2 # See /LICENSE for more information.
3 #
4
5 include $(TOPDIR)/rules.mk
6
7 PKG_NAME:=Flask
8 PKG_VERSION:=1.1.2
9 PKG_RELEASE:=1
10
11 PYPI_NAME:=$(PKG_NAME)
12 PKG_HASH:=4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060
13
14 PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
15 PKG_LICENSE:=BSD-3-Clause
16 PKG_LICENSE_FILES:=LICENSE.rst
17 PKG_CPE_ID:=cpe:/a:palletsprojects:flask
18
19 include ../pypi.mk
20 include $(INCLUDE_DIR)/package.mk
21 include ../python3-package.mk
22
23 define Package/python3-flask
24 SECTION:=lang
25 CATEGORY:=Languages
26 SUBMENU:=Python
27 TITLE:=Flask
28 URL:=https://palletsprojects.com/p/flask/
29 DEPENDS:=+python3-asyncio +python3-click +python3-codecs +python3-decimal \
30 +python3-itsdangerous +python3-jinja2 +python3 +python3-logging \
31 +python3-markupsafe +python3-multiprocessing +python3-setuptools \
32 +python3-werkzeug
33 endef
34
35 define Package/python3-flask/description
36 Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
37 intentions. And before you ask: It.s BSD licensed!
38 endef
39
40 $(eval $(call Py3Package,python3-flask))
41 $(eval $(call BuildPackage,python3-flask))
42 $(eval $(call BuildPackage,python3-flask-src))