pythonPackages.jc: init at 1.7.5
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user