{ lib, buildPythonPackage, cffi, fetchPypi, pytestCheckHook, setuptools, yajl, }: buildPythonPackage rec { pname = "ijson"; version = "3.4.0.post0"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-mqAtxwuyRWcKbKf7pze5kq7rSJU2CYBiL35Wjb8j5B4="; }; build-system = [ setuptools ]; buildInputs = [ yajl ]; dependencies = [ cffi ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "ijson" ]; meta = { description = "Iterative JSON parser with a standard Python iterator interface"; homepage = "https://github.com/ICRAR/ijson"; changelog = "https://github.com/ICRAR/ijson/blob/v${version}/CHANGELOG.md"; license = lib.licenses.bsd3; maintainers = [ ]; }; }