nixpkgs/pkgs/development/python-modules/ijson/default.nix
R. RyanTM f8274c8b18 python37Packages.ijson: 2.3 -> 2.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-ijson/versions
2019-07-20 14:15:20 +02:00

21 lines
520 B
Nix

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