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

39 lines
877 B
Nix
Raw Normal View History

{ lib
2020-02-07 13:03:39 +01:00
, buildPythonPackage
, fetchFromGitHub
2020-05-04 09:55:16 +02:00
, ruamel_yaml
2020-02-07 13:03:39 +01:00
, xmltodict
, pygments
, pytestCheckHook
2021-07-23 05:29:22 +02:00
, pythonOlder
2020-02-07 13:03:39 +01:00
}:
buildPythonPackage rec {
pname = "jc";
2021-08-18 18:37:26 +02:00
version = "1.16.1";
2021-07-23 05:29:22 +02:00
disabled = pythonOlder "3.6";
2020-02-07 13:03:39 +01:00
src = fetchFromGitHub {
owner = "kellyjonbrazil";
2021-07-23 05:29:22 +02:00
repo = pname;
rev = "v${version}";
2021-08-18 18:37:26 +02:00
sha256 = "sha256-R/RKMxSilv8JJW5om+l99vvrZYHjEEK1OCdsYWuxA74=";
2020-02-07 13:03:39 +01:00
};
propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ];
2020-02-07 13:03:39 +01:00
checkInputs = [ pytestCheckHook ];
2021-07-23 05:29:22 +02:00
pythonImportsCheck = [ "jc" ];
# tests require timezone to set America/Los_Angeles
doCheck = false;
meta = with lib; {
description = "This tool serializes the output of popular command line tools and filetypes to structured JSON output";
2020-02-07 13:03:39 +01:00
homepage = "https://github.com/kellyjonbrazil/jc";
license = licenses.mit;
maintainers = with maintainers; [ atemu ];
};
}