nixpkgs/pkgs/development/python-modules/ijson/default.nix
2020-06-11 10:00:00 +02:00

21 lines
530 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ijson";
version = "3.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "6e25448318cda55e82a5de52beb6813b003cb8e4a7b5753305912a30055a29f8";
};
doCheck = false; # something about yajl
meta = with stdenv.lib; {
description = "Iterative JSON parser with a standard Python iterator interface";
homepage = "https://github.com/ICRAR/ijson";
license = licenses.bsd3;
maintainers = with maintainers; [ rvl ];
};
}