nixpkgs/pkgs/development/python-modules/ijson/default.nix

21 lines
530 B
Nix
Raw Normal View History

2017-09-15 06:33:31 +01:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ijson";
2020-06-06 07:47:13 +01:00
version = "3.0.4";
2017-09-15 06:33:31 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:13 +01:00
sha256 = "6e25448318cda55e82a5de52beb6813b003cb8e4a7b5753305912a30055a29f8";
2017-09-15 06:33:31 +01:00
};
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";
2017-09-15 06:33:31 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ rvl ];
};
}