From 0fa0f446a0ea4d73685357af8cab5758bc8685ae Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 12 Jul 2026 22:09:05 +0200 Subject: [PATCH] python3Packages.flask: disable failing test Upstream says this is already fixed on main and has no production impact. --- pkgs/development/python-modules/flask/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/flask/default.nix b/pkgs/development/python-modules/flask/default.nix index 337c60ed0c06..51460c3d3ff6 100644 --- a/pkgs/development/python-modules/flask/default.nix +++ b/pkgs/development/python-modules/flask/default.nix @@ -59,6 +59,11 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ] ++ lib.concatAttrValues optional-dependencies; + disabledTests = [ + # https://github.com/pallets/flask/issues/6092#issuecomment-4952497033 + "test_bad_environ_raises_bad_request" + ]; + passthru.tests = { inherit flask-limiter