Merge pull request #209736 from r-ryantm/auto-update/python310Packages.ijson

python310Packages.ijson: 3.1.4 -> 3.2.0.post0
This commit is contained in:
Fabian Affolter 2023-01-10 08:15:07 +01:00 committed by GitHub
commit 254bc3cc59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,42 @@
{ lib, buildPythonPackage, fetchPypi, yajl, cffi, pytestCheckHook }:
{ lib
, buildPythonPackage
, fetchPypi
, yajl
, cffi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ijson";
version = "3.1.4";
version = "3.2.0.post0";
src = fetchPypi {
inherit pname version;
sha256 = "1d1003ae3c6115ec9b587d29dd136860a81a23c7626b682e2b5b12c9fd30e4ea";
hash = "sha256-gKW9fpkjyrIAcB9nrSNyEEMouZ3fJJ276INBAshS0xY=";
};
buildInputs = [ yajl ];
propagatedBuildInputs = [ cffi ];
checkInputs = [ pytestCheckHook ];
buildInputs = [
yajl
];
propagatedBuildInputs = [
cffi
];
checkInputs = [
pytestCheckHook
];
doCheck = true;
pythonImportsCheck = [
"ijson"
];
meta = with lib; {
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 = licenses.bsd3;
maintainers = with maintainers; [ rvl ];
};