Merge pull request #212516 from r-ryantm/auto-update/python310Packages.flask-security-too

python310Packages.flask-security-too: 5.0.2 -> 5.1.0
This commit is contained in:
Fabian Affolter
2023-01-26 08:33:14 +01:00
committed by GitHub
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# extras: babel
, babel
@@ -45,12 +46,15 @@
buildPythonPackage rec {
pname = "flask-security-too";
version = "5.0.2";
version = "5.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Flask-Security-Too";
inherit version;
sha256 = "sha256-Nv7g2l0bPSEcrydFU7d1NHjCCJl8Ykq7hOu6QmHeZcI=";
hash = "sha256-nSo7fdY9tiE7PnhosXh1eBfVa5l6a43XNvp6vKvrq5Y=";
};
propagatedBuildInputs = [
@@ -103,10 +107,13 @@ buildPythonPackage rec {
++ passthru.optional-dependencies.mfa;
pythonImportsCheck = [ "flask_security" ];
pythonImportsCheck = [
"flask_security"
];
meta = with lib; {
homepage = "https://pypi.org/project/Flask-Security-Too/";
changelog = "https://github.com/Flask-Middleware/flask-security/blob/${version}/CHANGES.rst";
homepage = "https://github.com/Flask-Middleware/flask-security";
description = "Simple security for Flask apps (fork)";
license = licenses.mit;
maintainers = with maintainers; [ gador ];