pythonPackages.jc: init at 1.7.5
This commit is contained in:
parent
9fa218e3a0
commit
c6a5cc3fdf
28
pkgs/development/python-modules/jc/default.nix
Normal file
28
pkgs/development/python-modules/jc/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user