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-08-16 18:31:03 +01:00
version = "3.1.1";
2017-09-15 06:33:31 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:03 +01:00
sha256 = "815e9ce9d2de7ddd58ba01834d8f55790b7daddbac6c844cba0fc459b7d5005a";
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 ];
};
}