Merge pull request #330111 from gador/flask-security-too-5.5.0

python312Packages.flask-security-too: 5.4.3 -> 5.5.0
This commit is contained in:
Peder Bergebakken Sundt 2024-07-27 17:41:23 +02:00 committed by GitHub
commit 4f51070f8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,18 +48,18 @@
buildPythonPackage rec {
pname = "flask-security-too";
version = "5.4.3";
version = "5.5.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "Flask-Security-Too";
pname = "flask_security_too";
inherit version;
hash = "sha256-YrGTl+jXGo1MuNwNRAnMehSXmCVJAwOWlgruUYdV5YM=";
hash = "sha256-nuYOqKgH3Wfk2IFEDUhWUB6aP1xZ+c4DK7n0zB01TSk=";
};
build-system = [ setuptools ];
build-system = [ setuptools ];
# flask-login>=0.6.2 not satisfied by version 0.7.0.dev0
pythonRelaxDeps = [ "flask-login" ];