nixpkgs/pkgs/development/python-modules/ijson/default.nix
R. RyanTM 4ad928ce14 python37Packages.ijson: 2.4 -> 2.5
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-10-07 22:38:47 -07:00

21 lines
520 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ijson";
version = "2.5";
src = fetchPypi {
inherit pname version;
sha256 = "08ppzz4my7dbs5bsdv3r1yn8bx8ijqmk5hjfdblrzrxhj184v4bs";
};
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 ];
};
}