summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFlorian Brandes <florian.brandes@posteo.de>2022-04-20 13:51:24 +0200
committerFlorian Brandes <florian.brandes@posteo.de>2022-04-20 13:51:24 +0200
commit8059cfcecb9d71cd6bbdcf77366bc36ae4ceca56 (patch)
tree02c89a6acd99e88fbdbafe8e7f4ae747d5c5386a /pkgs/development/python-modules
parent36bbcc2a4a38e8410431ec7491fbbeaf434c0682 (diff)
python3Packages.flask-security-too: 4.1.3 -> 4.1.4
also remove disabledTests Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/flask-security-too/default.nix26
1 files changed, 2 insertions, 24 deletions
diff --git a/pkgs/development/python-modules/flask-security-too/default.nix b/pkgs/development/python-modules/flask-security-too/default.nix
index 88fd2da77d72..8379ec7bcfe4 100644
--- a/pkgs/development/python-modules/flask-security-too/default.nix
+++ b/pkgs/development/python-modules/flask-security-too/default.nix
@@ -43,12 +43,12 @@
buildPythonPackage rec {
pname = "flask-security-too";
- version = "4.1.3";
+ version = "4.1.4";
src = fetchPypi {
pname = "Flask-Security-Too";
inherit version;
- sha256 = "sha256-mW2NKGeJpyR4Ri7m+KE3ElSg3E+P7qbzNTTCo3cskc8=";
+ sha256 = "sha256-j6My1CD+GY2InHlN0IXPcNqfq+ytdoDD3y+5s2o3WRI=";
};
propagatedBuildInputs = [
@@ -98,28 +98,6 @@ buildPythonPackage rec {
++ passthru.extras-require.fsqla
++ passthru.extras-require.mfa;
- disabledTests = [
- # flask 2.1.0 incompatibilities https://github.com/Flask-Middleware/flask-security/issues/594
- "test_admin_setup_reset"
- "test_authn_freshness"
- "test_authn_freshness_nc"
- "test_bad_sender"
- "test_change_invalidates_auth_token"
- "test_change_invalidates_session"
- "test_default_authn_bp"
- "test_default_unauthn"
- "test_default_unauthn_bp"
- "test_email_not_identity"
- "test_next"
- "test_post_security_with_application_root"
- "test_post_security_with_application_root_and_views"
- "test_recover_invalidates_session"
- "test_two_factor_flag"
- "test_unauthorized_access_with_referrer"
- "test_verify"
- "test_verify_link"
- "test_view_configuration"
- ];
pythonImportsCheck = [ "flask_security" ];