24 lines
613 B
Nix
24 lines
613 B
Nix
{ lib, buildPythonApplication, fetchPypi, pyyaml, xmltodict, jq }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "yq";
|
|
version = "2.8.1";
|
|
|
|
propagatedBuildInputs = [ pyyaml xmltodict jq ];
|
|
|
|
# ValueError: underlying buffer has been detached
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "042p3s011635rbjax9wvwjdrb1kyzw38a6qn59b0j0k7krz6rlr4";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|