2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-02-07 12:03:39 +00:00
|
|
|
, buildPythonPackage
|
2020-05-10 14:41:44 +01:00
|
|
|
, fetchFromGitHub
|
2020-05-04 08:55:16 +01:00
|
|
|
, ruamel_yaml
|
2020-02-07 12:03:39 +00:00
|
|
|
, xmltodict
|
2020-05-04 09:01:00 +01:00
|
|
|
, pygments
|
2020-02-07 12:03:39 +00:00
|
|
|
, isPy27
|
2021-01-09 13:33:44 +00:00
|
|
|
, pytestCheckHook
|
2020-02-07 12:03:39 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jc";
|
2021-02-12 14:12:17 +00:00
|
|
|
version = "1.14.3";
|
2020-02-07 12:03:39 +00:00
|
|
|
disabled = isPy27;
|
|
|
|
|
2020-05-10 14:41:44 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kellyjonbrazil";
|
|
|
|
repo = "jc";
|
|
|
|
rev = "v${version}";
|
2021-02-12 14:12:17 +00:00
|
|
|
sha256 = "sha256-6ofw74onFECJYYSuZlOVcNVAVuJaJKV4pkaJ4cTrvPk=";
|
2020-02-07 12:03:39 +00:00
|
|
|
};
|
|
|
|
|
2020-05-04 09:01:00 +01:00
|
|
|
propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ];
|
2020-02-07 12:03:39 +00:00
|
|
|
|
2021-01-09 13:33:44 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output";
|
2020-02-07 12:03:39 +00:00
|
|
|
homepage = "https://github.com/kellyjonbrazil/jc";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ atemu ];
|
|
|
|
};
|
|
|
|
}
|