From 583463ce5388058d48d016b84e2d3f2d1381df50 Mon Sep 17 00:00:00 2001 From: Atemu Date: Mon, 4 May 2020 10:01:00 +0200 Subject: [PATCH] jc: 1.9.3 -> 1.10.7 It now needs pygments for color output and ifconfig-parser was vendorised --- pkgs/development/python-modules/jc/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/jc/default.nix b/pkgs/development/python-modules/jc/default.nix index ce43eb8206f6..190d469f8368 100644 --- a/pkgs/development/python-modules/jc/default.nix +++ b/pkgs/development/python-modules/jc/default.nix @@ -2,22 +2,22 @@ , buildPythonPackage , fetchPypi , ruamel_yaml -, ifconfig-parser , xmltodict +, pygments , isPy27 }: buildPythonPackage rec { pname = "jc"; - version = "1.9.3"; + version = "1.10.7"; disabled = isPy27; src = fetchPypi { inherit pname version; - sha256 = "1hg6h3ag4pbilpmqylnj7dflz7avk3w8ngmk6psfqrizizwx0hnj"; + sha256 = "198vsnh6j0nv9d7msnvw6qr1bzf0nffjsz7clm11bs7fh3ri3qxp"; }; - propagatedBuildInputs = [ ruamel_yaml ifconfig-parser xmltodict ]; + propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ]; meta = with stdenv.lib; { description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output.";