package/python-flask-wtf: new package

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Peter Seiderer 2021-03-08 20:59:12 +01:00 committed by Yann E. MORIN
parent 1840adf012
commit 62b59d6027
5 changed files with 31 additions and 0 deletions

View File

@ -2104,6 +2104,7 @@ F: package/libuev/
F: package/log4cplus/
F: package/postgresql/
F: package/python-colorzero/
F: package/python-flask-wtf/
F: package/python-gpiozero/
F: package/qt5/
F: package/quotatool/

View File

@ -988,6 +988,7 @@ menu "External python modules"
source "package/python-flask-jsonrpc/Config.in"
source "package/python-flask-login/Config.in"
source "package/python-flask-sqlalchemy/Config.in"
source "package/python-flask-wtf/Config.in"
source "package/python-flatbuffers/Config.in"
source "package/python-flup/Config.in"
source "package/python-frozenlist/Config.in"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_FLASK_WTF
bool "python-flask-wtf"
select BR2_PACKAGE_PYTHON_FLASK # runtime
select BR2_PACKAGE_PYTHON_ITSDANGEROUS # runtime
select BR2_PACKAGE_PYTHON_WTFORMS # runtime
help
Simple integration of Flask and WTForms.
https://github.com/lepture/flask-wtf

View File

@ -0,0 +1,6 @@
# From https://pypi.org/project/Flask-WTF/#copy-hash-modal-d090dbe5-8665-4c96-a565-57134e470a60
md5 1b60b7dd1245b0d0173c21123717af61 Flask-WTF-0.14.3.tar.gz
sha256 d417e3a0008b5ba583da1763e4db0f55a1269d9dd91dcc3eb3c026d3c5dbd720 Flask-WTF-0.14.3.tar.gz
# License files
sha256 a075f8d98acfdb05dd98716242b9e2c1b3ab98722926b3c4cf6c916ac14e8350 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-flask-wtf
#
################################################################################
PYTHON_FLASK_WTF_VERSION = 0.14.3
PYTHON_FLASK_WTF_SOURCE = Flask-WTF-$(PYTHON_FLASK_WTF_VERSION).tar.gz
PYTHON_FLASK_WTF_SITE = https://files.pythonhosted.org/packages/2e/f4/3d9e1905ffad67e20ef4f5963d711e8e29ab9439120d7ffec3d2922020e3
PYTHON_FLASK_WTF_LICENSE = BSD-3-Clause
PYTHON_FLASK_WTF_LICENSE_FILES = LICENSE
PYTHON_FLASK_WTF_SETUP_TYPE = setuptools
$(eval $(python-package))