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

21 lines
518 B
Nix
Raw Normal View History

2017-09-15 06:33:31 +01:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ijson";
2020-02-09 09:51:09 +00:00
version = "2.6.1";
2017-09-15 06:33:31 +01:00
src = fetchPypi {
inherit pname version;
2020-02-09 09:51:09 +00:00
sha256 = "1l034zq23315icym2n0zppa5lwpdll3mvavmyjbiryxb4c5wdsvm";
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 ];
};
}