Merge pull request #86738 from Atemu/jc-1.10.7

Jc 1.9.3 -> 1.10.7
This commit is contained in:
Mario Rodas 2020-05-08 07:01:48 -05:00 committed by GitHub
commit e8c9a804c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,23 +1,23 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi, , fetchPypi
ruamel_yaml , ruamel_yaml
, ifconfig-parser
, xmltodict , xmltodict
, pygments
, isPy27 , isPy27
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "jc"; pname = "jc";
version = "1.9.3"; version = "1.10.7";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1hg6h3ag4pbilpmqylnj7dflz7avk3w8ngmk6psfqrizizwx0hnj"; sha256 = "198vsnh6j0nv9d7msnvw6qr1bzf0nffjsz7clm11bs7fh3ri3qxp";
}; };
propagatedBuildInputs = [ ruamel_yaml ifconfig-parser xmltodict ]; propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output."; description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output.";