pythonPackages.jc: init at 1.7.5

This commit is contained in:
Atemu 2020-02-07 13:03:39 +01:00 committed by Jon
parent 9fa218e3a0
commit c6a5cc3fdf
3 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv
, buildPythonPackage
, fetchPypi,
ruamel_yaml
, ifconfig-parser
, xmltodict
, isPy27
}:
buildPythonPackage rec {
pname = "jc";
version = "1.7.5";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "16ndzvyvx4s3b6cnhxbd5fs3fkc3fwygz7qzaw7ws76sag1zpx67";
};
propagatedBuildInputs = [ ruamel_yaml ifconfig-parser xmltodict ];
meta = with stdenv.lib; {
description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output.";
homepage = "https://github.com/kellyjonbrazil/jc";
license = licenses.mit;
maintainers = with maintainers; [ atemu ];
};
}

View file

@ -4309,6 +4309,8 @@ in
jazzy = callPackage ../development/tools/jazzy { };
jc = with python3Packages; toPythonApplication jc;
jd = callPackage ../development/tools/jd { };
jd-gui = callPackage ../tools/security/jd-gui { };

View file

@ -803,6 +803,8 @@ in {
janus = callPackage ../development/python-modules/janus { };
jc = callPackage ../development/python-modules/jc { };
jira = callPackage ../development/python-modules/jira { };
junit-xml = callPackage ../development/python-modules/junit-xml { };