1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "ijson";
5 version = "2.6.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1l034zq23315icym2n0zppa5lwpdll3mvavmyjbiryxb4c5wdsvm";
10 };
11
12 doCheck = false; # something about yajl
13
14 meta = with stdenv.lib; {
15 description = "Iterative JSON parser with a standard Python iterator interface";
16 homepage = "https://github.com/ICRAR/ijson";
17 license = licenses.bsd3;
18 maintainers = with maintainers; [ rvl ];
19 };
20}