Files
nixpkgs/pkgs/development/python-modules/ijson/default.nix
T
Weijia Wang af86d6d31b Merge pull request #273105 from rvl/python-packages-maintainers
pythonPackages.various: Remove self from meta.maintainers
2023-12-09 16:56:30 +01:00

44 lines
744 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, yajl
, cffi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ijson";
version = "3.2.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-EClOm/ictxPaBbxHkL3/YWYQQy21YZZIJwdImOF0+Rc=";
};
buildInputs = [
yajl
];
propagatedBuildInputs = [
cffi
];
nativeCheckInputs = [
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;
};
}