mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
d9b8524102
* 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>
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, hiera-eyaml
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "yamlpath";
|
|
version = "3.8.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wwkimball";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-6N2s/LWFa3mgMQ88rt3IaWk+b2PTWfT7z1mi+ioQEyU=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
python-dateutil
|
|
ruamel-yaml
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
hiera-eyaml
|
|
mock
|
|
pytest-console-scripts
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export PATH=$PATH:$out/bin
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"yamlpath"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Command-line processors for YAML/JSON/Compatible data";
|
|
homepage = "https://github.com/wwkimball/yamlpath";
|
|
changelog = "https://github.com/wwkimball/yamlpath/releases/tag/v${version}";
|
|
longDescription = ''
|
|
Command-line get/set/merge/validate/scan/convert/diff processors for YAML/JSON/Compatible data
|
|
using powerful, intuitive, command-line friendly syntax
|
|
'';
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ Flakebi ];
|
|
|
|
# No support for ruamel.yaml > 0.17.21
|
|
# https://github.com/wwkimball/yamlpath/issues/217
|
|
broken = true;
|
|
};
|
|
}
|