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]: 9bbddea520/setup.py (L48)

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
mfrischknecht 2023-11-26 22:31:44 +01:00 committed by GitHub
parent ddf0003c57
commit d9b8524102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
}