nixpkgs/pkgs/development/python-modules/yq/default.nix

57 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
2020-12-18 17:07:30 +00:00
, nixosTests
, buildPythonPackage
, fetchPypi
, substituteAll
, argcomplete
, pyyaml
, xmltodict
, jq
, pytestCheckHook
}:
2017-11-13 18:32:13 +00:00
buildPythonPackage rec {
2017-11-13 18:32:13 +00:00
pname = "yq";
2021-06-18 22:47:43 +01:00
version = "2.12.2";
2017-11-13 18:32:13 +00:00
src = fetchPypi {
inherit pname version;
2021-06-18 22:47:43 +01:00
sha256 = "2f156d0724b61487ac8752ed4eaa702a5737b804d5afa46fa55866951cd106d2";
};
patches = [
(substituteAll {
src = ./jq-path.patch;
jq = "${lib.getBin jq}/bin/jq";
})
];
postPatch = ''
substituteInPlace test/test.py \
--replace "expect_exit_codes={0} if sys.stdin.isatty() else {2}" "expect_exit_codes={0}"
'';
propagatedBuildInputs = [
pyyaml
xmltodict
argcomplete
];
2017-11-13 18:32:13 +00:00
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [ "test/test.py" ];
2017-11-13 18:32:13 +00:00
pythonImportsCheck = [ "yq" ];
2017-11-13 18:32:13 +00:00
2020-12-18 17:07:30 +00:00
passthru.tests = { inherit (nixosTests) yq; };
2017-11-13 18:32:13 +00:00
meta = with lib; {
description = "Command-line YAML processor - jq wrapper for YAML documents";
homepage = "https://github.com/kislyuk/yq";
license = licenses.asl20;
maintainers = with maintainers; [ womfoo SuperSandro2000 ];
2017-11-13 18:32:13 +00:00
};
}