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

21 lines
520 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2017-09-15 06:33:31 +01:00
buildPythonPackage rec {
pname = "ijson";
2021-03-12 18:08:58 +00:00
version = "3.1.4";
2017-09-15 06:33:31 +01:00
src = fetchPypi {
inherit pname version;
2021-03-12 18:08:58 +00:00
sha256 = "1d1003ae3c6115ec9b587d29dd136860a81a23c7626b682e2b5b12c9fd30e4ea";
2017-09-15 06:33:31 +01:00
};
doCheck = false; # something about yajl
meta = with lib; {
2017-09-15 06:33:31 +01:00
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 ];
};
}