diff options
author | Jan Pavlinec <jan.pavlinec@nic.cz> | 2021-03-15 09:58:51 +0100 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-04-03 18:40:04 -0700 |
commit | 6c9627b45d9fcf3acac438466943015e1f0f837f (patch) | |
tree | 7938c3b062b437f5149e734fccc35841881e2c1a /lang/python/python-flask-httpauth/Makefile | |
parent | c61ed3e93fe60f23b2fccb6d62222fc09f6e555e (diff) |
python-flask-httpauth: add new package
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
Diffstat (limited to 'lang/python/python-flask-httpauth/Makefile')
-rw-r--r-- | lang/python/python-flask-httpauth/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/lang/python/python-flask-httpauth/Makefile b/lang/python/python-flask-httpauth/Makefile new file mode 100644 index 000000000..6dc8ed667 --- /dev/null +++ b/lang/python/python-flask-httpauth/Makefile @@ -0,0 +1,43 @@ +# +# Copyright (C) 2021 CZ.NIC, z. s. p. o. (https://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:=python3-flask-httpauth +PKG_VERSION:=4.2.0 +PKG_RELEASE:=1 + +PYPI_NAME:=Flask-HTTPAuth +PKG_HASH:=8c7e49e53ce7dc14e66fe39b9334e4b7ceb8d0b99a6ba1c3562bb528ef9da84a + +PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz> +PKG_LICENSE:=MIT +PKG_LICENSE_FILES:=LICENSE + +include ../pypi.mk +include $(INCLUDE_DIR)/package.mk +include ../python3-package.mk + +define Package/python3-flask-httpauth + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + TITLE:=Basic and Digest HTTP authentication for Flask routes + URL:=https://github.com/miguelgrinberg/flask-httpauth + DEPENDS:= \ + +python3-light \ + +python3-flask +endef + +define Package/python3-flask-httpauth/description + Flask-HTTPAuth is a Flask extension that simplifies the + use of HTTP authentication with Flask routes +endef + +$(eval $(call Py3Package,python3-flask-httpauth)) +$(eval $(call BuildPackage,python3-flask-httpauth)) +$(eval $(call BuildPackage,python3-flask-httpauth-src)) |