python3-flask-login: add new package
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
This commit is contained in:
parent
d9f29124b7
commit
21f01685af
1 changed files with 44 additions and 0 deletions
44
lang/python/python3-flask-login/Makefile
Normal file
44
lang/python/python3-flask-login/Makefile
Normal file
|
@ -0,0 +1,44 @@
|
|||
#
|
||||
# Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=Flask-Login
|
||||
PKG_VERSION:=0.4.1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/f/flask-login/
|
||||
PKG_HASH:=c815c1ac7b3e35e2081685e389a665f2c74d7e077cb93cecabaea352da4752ec
|
||||
|
||||
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include ../python3-package.mk
|
||||
|
||||
define Package/python3-flask-login
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
SUBMENU:=Python
|
||||
TITLE:=User session management plugin for Flask
|
||||
URL:=https://github.com/maxcountryman/flask-login
|
||||
DEPENDS:=+python3-light +python3-flask
|
||||
VARIANT:=python3
|
||||
endef
|
||||
|
||||
define Package/python3-flask-login/description
|
||||
Flask-Login provides user session management for Flask.
|
||||
It handles the common tasks of logging in, logging out,
|
||||
and remembering your users’ sessions over extended periods of time.
|
||||
endef
|
||||
|
||||
$(eval $(call Py3Package,python3-flask-login))
|
||||
$(eval $(call BuildPackage,python3-flask-login))
|
||||
$(eval $(call BuildPackage,python3-flask-login-src))
|
Loading…
Reference in a new issue