nixpkgs/pkgs/development/tools/yq/default.nix
Daniel Schaefer d4e530412d
yq: 2.8.1 -> 2.9.2 (#73424)
Co-authored-by: Drew Risinger <drewrisinger@users.noreply.github.com>
Co-authored-by: Drew <drewrisinger@users.noreply.github.com>
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2020-08-15 08:27:07 +01:00

45 lines
755 B
Nix

{ lib
, buildPythonApplication
, fetchPypi
, argcomplete
, pyyaml
, xmltodict
# Test inputs
, coverage
, flake8
, jq
, pytest
, toml
}:
buildPythonApplication rec {
pname = "yq";
version = "2.10.1";
propagatedBuildInputs = [ pyyaml xmltodict jq argcomplete ];
doCheck = true;
checkInputs = [
pytest
coverage
flake8
jq
toml
];
checkPhase = "pytest ./test/test.py";
src = fetchPypi {
inherit pname version;
sha256 = "1h6nnkp53mm4spwy8nyxwvh9j6p4lxvf20j4bgjskhnhaw3jl9gn";
};
meta = with lib; {
description = "Command-line YAML processor - jq wrapper for YAML documents.";
homepage = "https://github.com/kislyuk/yq";
license = [ licenses.asl20 ];
maintainers = [ maintainers.womfoo ];
};
}