1{ 2 stdenv, 3 lib, 4 buildPythonPackage, 5 fetchFromGitHub, 6 pkg-config, 7 yajl, 8}: 9 10buildPythonPackage rec { 11 pname = "jsonslicer"; 12 version = "0.1.7"; 13 format = "setuptools"; 14 15 src = fetchFromGitHub { 16 owner = "AMDmi3"; 17 repo = "jsonslicer"; 18 rev = version; 19 hash = "sha256-uKIe/nJLCTe8WFIMB7+g3c0Yv3addgZEKYaBI6EpBSY="; 20 }; 21 22 nativeBuildInputs = [ pkg-config ]; 23 24 buildInputs = [ yajl ]; 25 26 meta = with lib; { 27 description = "Stream JSON parser for Python "; 28 homepage = "https://github.com/AMDmi3/jsonslicer"; 29 license = licenses.mit; 30 maintainers = with maintainers; [ jopejoe1 ]; 31 }; 32}