python3.pkgs.ijson: enable yail backend
makes parsing a lot faster.
This commit is contained in:
parent
df9525d89a
commit
93b45825dd
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi }:
|
{ lib, buildPythonPackage, fetchPypi, yajl, cffi, pytestCheckHook }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ijson";
|
pname = "ijson";
|
||||||
|
@ -9,7 +9,11 @@ buildPythonPackage rec {
|
||||||
sha256 = "1d1003ae3c6115ec9b587d29dd136860a81a23c7626b682e2b5b12c9fd30e4ea";
|
sha256 = "1d1003ae3c6115ec9b587d29dd136860a81a23c7626b682e2b5b12c9fd30e4ea";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = false; # something about yajl
|
buildInputs = [ yajl ];
|
||||||
|
propagatedBuildInputs = [ cffi ];
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Iterative JSON parser with a standard Python iterator interface";
|
description = "Iterative JSON parser with a standard Python iterator interface";
|
||||||
|
|
Loading…
Reference in a new issue