summary refs log tree commit diff
path: root/pkgs/development/python-modules/jq/default.nix
blob: b5ec35717733b31c1d485d3c0d743bb84acc533d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib, buildPythonPackage, fetchFromGitHub, cython, jq, pytestCheckHook }:

buildPythonPackage rec {
  pname = "jq";
  version = "1.3.0";

  src = fetchFromGitHub {
    owner = "mwilliamson";
    repo = "jq.py";
    rev = version;
    sha256 = "sha256-1EQm5ShjFHbO1IO5QD42fsGHFGDBrJulLrcl+WeU7wo=";
  };

  patches = [
    # Removes vendoring
    ./jq-py-setup.patch
  ];

  nativeBuildInputs = [ cython ];

  buildInputs = [ jq ];

  preBuild = ''
    cython jq.pyx
  '';

  checkInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "jq" ];

  meta = {
    description = "Python bindings for jq, the flexible JSON processor";
    homepage = "https://github.com/mwilliamson/jq.py";
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ benley ];
  };
}