From e0b917d7dc93058f3bbb09bbf97501fca9e7f848 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 18 May 2024 15:31:08 +0200 Subject: [PATCH] python312Packages.reportengine: mark as broken Incompatibility with ruamel >= 0.18 https://github.com/NNPDF/reportengine/issues/60 --- pkgs/development/python-modules/reportengine/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/reportengine/default.nix b/pkgs/development/python-modules/reportengine/default.nix index 79e1a908f7eb..3eb6cf2a869c 100644 --- a/pkgs/development/python-modules/reportengine/default.nix +++ b/pkgs/development/python-modules/reportengine/default.nix @@ -49,5 +49,8 @@ buildPythonPackage rec { homepage = "https://github.com/NNPDF/reportengine/"; license = with licenses; [ gpl2Only ]; maintainers = with maintainers; [ veprbl ]; + # Incompatibility with ruamel >= 0.18 + # https://github.com/NNPDF/reportengine/issues/60 + broken = versionAtLeast ruamel-yaml.version "0.18"; }; }