From d9b85241029e1d1f278b1181ce48d6add9dd0ead Mon Sep 17 00:00:00 2001 From: mfrischknecht Date: Sun, 26 Nov 2023 22:31:44 +0100 Subject: [PATCH] python3Packages.yamlpath: mark as broken (#270193) * python3Packages.yamlpath: mark as broken `yamlpath` depends on `ruamel.yaml` <= 0.17.21 [1], but the packaged version in Nixpkgs is on version 0.17.32 by now. This breaks a lot of the libraries own unit tests. As I don't see anything in Nixpkgs depending on `yamlpath`, this simply marks the package as broken. [1]: https://github.com/wwkimball/yamlpath/blob/9bbddea5205147d49e612abb26cf1671a3861256/setup.py#L48 Co-authored-by: Fabian Affolter --- pkgs/development/tools/yamlpath/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/tools/yamlpath/default.nix b/pkgs/development/tools/yamlpath/default.nix index 2cfe916d8c8b..8bb0fcc8311c 100644 --- a/pkgs/development/tools/yamlpath/default.nix +++ b/pkgs/development/tools/yamlpath/default.nix @@ -46,5 +46,9 @@ python3.pkgs.buildPythonApplication rec { ''; license = licenses.isc; maintainers = with maintainers; [ Flakebi ]; + + # No support for ruamel.yaml > 0.17.21 + # https://github.com/wwkimball/yamlpath/issues/217 + broken = true; }; }