diff --git a/pkgs/development/python-modules/wrf-python/default.nix b/pkgs/development/python-modules/wrf-python/default.nix index fded65e33a4bc..b9460e33278a2 100644 --- a/pkgs/development/python-modules/wrf-python/default.nix +++ b/pkgs/development/python-modules/wrf-python/default.nix @@ -49,6 +49,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "wrf" ]; meta = with lib; { + # `ModuleNotFoundError: No module named 'distutils.msvccompiler'` on Python 3.11 + # `ModuleNotFoundError: No module named 'numpy.distutils'` on Python 3.12 + broken = true; description = "WRF postprocessing library for Python"; homepage = "http://wrf-python.rtfd.org"; license = licenses.asl20;