2020-02-07 12:03:39 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
2020-05-10 13:41:44 +00:00
|
|
|
, fetchFromGitHub
|
2020-05-04 07:55:16 +00:00
|
|
|
, ruamel_yaml
|
2020-02-07 12:03:39 +00:00
|
|
|
, xmltodict
|
2020-05-04 08:01:00 +00:00
|
|
|
, pygments
|
2020-02-07 12:03:39 +00:00
|
|
|
, isPy27
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jc";
|
2020-08-12 23:19:36 +00:00
|
|
|
version = "1.13.4";
|
2020-02-07 12:03:39 +00:00
|
|
|
disabled = isPy27;
|
|
|
|
|
2020-05-10 13:41:44 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kellyjonbrazil";
|
|
|
|
repo = "jc";
|
|
|
|
rev = "v${version}";
|
2020-08-12 23:19:36 +00:00
|
|
|
sha256 = "0rwvyyrdnw43pixp8h51rncq2inc9pbbj1j2191y5si00pjw34zr";
|
2020-02-07 12:03:39 +00:00
|
|
|
};
|
|
|
|
|
2020-05-04 08:01:00 +00:00
|
|
|
propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ];
|
2020-02-07 12:03:39 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-10-11 05:55:05 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|