ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / ijson / default.nix
blob3211aed644e082d482ef2608674bc0d9613a73f5
1 { lib, buildPythonPackage, fetchPypi, yajl, cffi, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "ijson";
5   version = "3.1.4";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1d1003ae3c6115ec9b587d29dd136860a81a23c7626b682e2b5b12c9fd30e4ea";
10   };
12   buildInputs = [ yajl ];
13   propagatedBuildInputs = [ cffi ];
14   checkInputs = [ pytestCheckHook ];
16   doCheck = true;
18   meta = with lib; {
19     description = "Iterative JSON parser with a standard Python iterator interface";
20     homepage = "https://github.com/ICRAR/ijson";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ rvl ];
23   };