python3Packages.flask-security-too: 4.1.3 -> 4.1.4

also remove disabledTests

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
Florian Brandes 2022-04-20 13:51:24 +02:00
parent 36bbcc2a4a
commit 8059cfcecb
No known key found for this signature in database
GPG key ID: 074048E893713170

View file

@ -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" ];