diff options
| author | Manuel Frischknecht <manuel.frischknecht@gmail.com> | 2023-11-26 17:34:33 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-26 21:32:13 +0000 |
| commit | 8bcbfc02e36286b8a751deb4b1a86eb29437c7a9 (patch) | |
| tree | ef6a4c1cc68595376d0a46691522b69045467388 | |
| parent | Merge pull request #270044 from NixOS/backport-269810-to-release-23.11 (diff) | |
| download | nixpkgs-8bcbfc02e36286b8a751deb4b1a86eb29437c7a9.tar.gz | |
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
(cherry picked from commit 53b47693e1355525fbb9d0026bedf5b3bc060fce)
| -rw-r--r-- | pkgs/development/tools/yamlpath/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/tools/yamlpath/default.nix b/pkgs/development/tools/yamlpath/default.nix index 2cfe916d8c8b..b044030c63f6 100644 --- a/pkgs/development/tools/yamlpath/default.nix +++ b/pkgs/development/tools/yamlpath/default.nix @@ -46,5 +46,6 @@ python3.pkgs.buildPythonApplication rec { ''; license = licenses.isc; maintainers = with maintainers; [ Flakebi ]; + broken = true; }; } |
