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

21 lines
528 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi }:
2017-09-15 06:33:31 +01:00
buildPythonPackage rec {
pname = "ijson";
version = "3.1.3";
2017-09-15 06:33:31 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "d29977f7235b5bf83c372825c6abd8640ba0e3a8e031d3ffc3b63deaf6ae1487";
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 ];
};
}