diff --git a/pkgs/development/python-modules/graphene/default.nix b/pkgs/development/python-modules/graphene/default.nix index be2cc808eb0d..5eec4b8f0b25 100644 --- a/pkgs/development/python-modules/graphene/default.nix +++ b/pkgs/development/python-modules/graphene/default.nix @@ -50,6 +50,12 @@ buildPythonPackage rec { pytestFlagsArray = [ "--benchmark-disable" ]; + disabledTests = [ + # Expects different Exeception classes, but receives none of them + # https://github.com/graphql-python/graphene/issues/1346 + "test_unexpected_error" + ]; + pythonImportsCheck = [ "graphene" ]; meta = with lib; {