at 22.05-pre 520 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "ijson"; 5 version = "3.1.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1d1003ae3c6115ec9b587d29dd136860a81a23c7626b682e2b5b12c9fd30e4ea"; 10 }; 11 12 doCheck = false; # something about yajl 13 14 meta = with 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}