nixpkgs/pkgs/development/python-modules/jc/default.nix

34 lines
752 B
Nix
Raw Normal View History

{ lib
2020-02-07 12:03:39 +00:00
, buildPythonPackage
, fetchFromGitHub
2020-05-04 08:55:16 +01:00
, ruamel_yaml
2020-02-07 12:03:39 +00:00
, xmltodict
, pygments
2020-02-07 12:03:39 +00:00
, isPy27
, pytestCheckHook
2020-02-07 12:03:39 +00:00
}:
buildPythonPackage rec {
pname = "jc";
2021-02-12 14:12:17 +00:00
version = "1.14.3";
2020-02-07 12:03:39 +00:00
disabled = isPy27;
src = fetchFromGitHub {
owner = "kellyjonbrazil";
repo = "jc";
rev = "v${version}";
2021-02-12 14:12:17 +00:00
sha256 = "sha256-6ofw74onFECJYYSuZlOVcNVAVuJaJKV4pkaJ4cTrvPk=";
2020-02-07 12:03:39 +00:00
};
propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ];
2020-02-07 12:03:39 +00:00
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output";
2020-02-07 12:03:39 +00:00
homepage = "https://github.com/kellyjonbrazil/jc";
license = licenses.mit;
maintainers = with maintainers; [ atemu ];
};
}