Merge pull request #147378 from Flakebi/yamlpath

main
Sandro 2 years ago committed by GitHub
commit cf0ee81812
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 48
      pkgs/development/tools/yamlpath/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,48 @@
{ lib
, python3Packages
, fetchFromGitHub
, hiera-eyaml
, python3
}:
let
py = python3.override {
packageOverrides = self: super: {
ruamel-yaml = super.ruamel-yaml.overridePythonAttrs(old: rec {
pname = "ruamel.yaml";
version = "0.17.10";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "EGvI1txqD/fJGWpHVwQyA29B1Va3eca05hgIX1fjnmc=";
};
});
};
};
in
py.pkgs.buildPythonPackage rec {
pname = "yamlpath";
version = "3.6.3";
src = fetchFromGitHub {
owner = "wwkimball";
repo = pname;
rev = "v${version}";
sha256 = "4lLKMMsjVWbnfiaOzdBePOtOwPN8nui3Ux6e55YdGoo=";
};
propagatedBuildInputs = with py.pkgs; [ ruamel-yaml ];
checkInputs = with py.pkgs; [ hiera-eyaml mock pytest-console-scripts pytestCheckHook ];
preCheck = ''
export PATH=$PATH:$out/bin
'';
meta = with lib; {
homepage = "https://github.com/wwkimball/yamlpath";
description = "Command-line processors for YAML/JSON/Compatible data";
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 ];
};
}

@ -12107,6 +12107,8 @@ with pkgs;
yamllint = with python3Packages; toPythonApplication yamllint;
yamlpath = callPackage ../development/tools/yamlpath { };
yaml-merge = callPackage ../tools/text/yaml-merge { };
yeshup = callPackage ../tools/system/yeshup { };

Loading…
Cancel
Save