2017-09-15 06:33:31 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ijson";
|
2019-06-17 19:47:50 +01:00
|
|
|
version = "2.4";
|
2017-09-15 06:33:31 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-06-17 19:47:50 +01:00
|
|
|
sha256 = "135rwh7izzmj4lwkrfb9xw4ik0gcwjz34ygnmx3vyvki2xbbp2xp";
|
2017-09-15 06:33:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # something about yajl
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Iterative JSON parser with a standard Python iterator interface";
|
|
|
|
homepage = "https://github.com/isagalaev/ijson";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ rvl ];
|
|
|
|
};
|
|
|
|
}
|