10 buildPythonPackage rec {
13 format = "setuptools";
15 src = fetchFromGitHub {
16 owner = "kellyjonbrazil";
19 hash = "sha256-EN09Kcnw4HNT2roCoQyZkoHEfkM9qxqtneZPuBg46z4=";
22 nativeBuildInputs = [ installShellFiles ];
24 propagatedBuildInputs = [ pygments ];
26 nativeCheckInputs = [ unittestCheckHook ];
28 pythonImportsCheck = [ "jello" ];
31 installManPage man/jello.1
35 description = "CLI tool to filter JSON and JSON Lines data with Python syntax";
36 mainProgram = "jello";
37 homepage = "https://github.com/kellyjonbrazil/jello";
38 changelog = "https://github.com/kellyjonbrazil/jello/blob/${src.rev}/CHANGELOG";
39 license = licenses.mit;
40 maintainers = with maintainers; [ figsoda ];