Basic and Digest HTTP authentication for Flask routes.

WWW: http://github.com/miguelgrinberg/flask-httpauth/
This commit is contained in:
Ruslan Makhmatkhanov 2015-04-08 10:58:05 +00:00
parent 73df72fff9
commit f848c882de
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=383561
4 changed files with 23 additions and 0 deletions

View File

@ -789,6 +789,7 @@
SUBDIR += py-ed25519ll
SUBDIR += py-fail2ban
SUBDIR += py-fchksum
SUBDIR += py-flask-httpauth
SUBDIR += py-gnupg
SUBDIR += py-gnutls
SUBDIR += py-htpasswd

View File

@ -0,0 +1,17 @@
# $FreeBSD$
PORTNAME= Flask-HTTPAuth
PORTVERSION= 2.4.0
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= rm@FreeBSD.org
COMMENT= Basic and Digest HTTP authentication for Flask routes
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>0:${PORTSDIR}/www/py-flask
USES= python
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (Flask-HTTPAuth-2.4.0.tar.gz) = bdab2c61fb68f620710513d9ef2440745c011873efe7395c9e4e38bc53d9350f
SIZE (Flask-HTTPAuth-2.4.0.tar.gz) = 2433

View File

@ -0,0 +1,3 @@
Basic and Digest HTTP authentication for Flask routes.
WWW: http://github.com/miguelgrinberg/flask-httpauth/