chg: temporary switch to flask-login from git (werkzeug compat)

pull/382/head
Raphaël Vinot 2022-03-30 12:20:11 +02:00
parent ae9cb3e81c
commit 284c2d26ab
2 changed files with 16 additions and 11 deletions

25
poetry.lock generated
View File

@ -359,15 +359,23 @@ Flask = ">=0.9"
Six = "*"
[[package]]
name = "flask-login"
version = "0.5.0"
description = "User session management for Flask"
name = "Flask-Login"
version = "0.6.0.dev0"
description = "User authentication and session management for Flask."
category = "main"
optional = false
python-versions = "*"
python-versions = ">=3.7"
develop = false
[package.dependencies]
Flask = "*"
Flask = ">=1.0.4"
Werkzeug = ">=1.0.1"
[package.source]
type = "git"
url = "https://github.com/maxcountryman/flask-login"
reference = "main"
resolved_reference = "0f94639858946ea8e921743db684b6da97d46385"
[[package]]
name = "flask-restx"
@ -1522,7 +1530,7 @@ misp = ["python-magic", "pydeep"]
[metadata]
lock-version = "1.1"
python-versions = ">=3.8,<3.11"
content-hash = "ae88c727752a91752586821db041fcb5de7177df6ff8d7fb448de7b2c05af0e1"
content-hash = "a1c1bf9772f545beeebf0e22a59bfb19932e4d88f5016744941fec9f5b8770fa"
[metadata.files]
aiohttp = [
@ -1813,10 +1821,7 @@ flask-cors = [
{file = "Flask-Cors-3.0.10.tar.gz", hash = "sha256:b60839393f3b84a0f3746f6cdca56c1ad7426aa738b70d6c61375857823181de"},
{file = "Flask_Cors-3.0.10-py2.py3-none-any.whl", hash = "sha256:74efc975af1194fc7891ff5cd85b0f7478be4f7f59fe158102e91abb72bb4438"},
]
flask-login = [
{file = "Flask-Login-0.5.0.tar.gz", hash = "sha256:6d33aef15b5bcead780acc339464aae8a6e28f13c90d8b1cf9de8b549d1c0b4b"},
{file = "Flask_Login-0.5.0-py2.py3-none-any.whl", hash = "sha256:7451b5001e17837ba58945aead261ba425fdf7b4f0448777e597ddab39f4fba0"},
]
Flask-Login = []
flask-restx = [
{file = "flask-restx-0.5.1.tar.gz", hash = "sha256:63c69a61999a34f1774eaccc6fc8c7f504b1aad7d56a8ec672264e52d9ac05f4"},
{file = "flask_restx-0.5.1-py2.py3-none-any.whl", hash = "sha256:96157547acaa8892adcefd8c60abf9040212ac2a8634937a82946e07b46147fd"},

View File

@ -57,7 +57,6 @@ python-magic = {version = "^0.4.22", optional = true}
# pydeep requires libfuzzy-dev, and is only used in the MISP export module
pydeep = {version = "^0.4", optional = true}
Pillow = "^9.0.1"
Flask-Login = "^0.5.0"
flask-restx = "^0.5.1"
rich = "^12.0.1"
pyphishtanklookup = "^1.0.1"
@ -66,6 +65,7 @@ Flask-Cors = "^3.0.10"
pyhashlookup = "^1.1.1"
lief = "^0.12.0"
ua-parser = "^0.10.0"
flask-login = {git = "https://github.com/maxcountryman/flask-login", rev = "main"}
[tool.poetry.extras]
misp = ['python-magic', 'pydeep']