Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "jsonpointer"; 8 version = "2.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0qjkjy1qlyc1nl3k95wd03ssxac0a717x8889ypgs1cfcj3bm4n1"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Resolve JSON Pointers in Python"; 17 homepage = "https://github.com/stefankoegl/python-json-pointer"; 18 license = stdenv.lib.licenses.bsd2; # "Modified BSD license, says pypi" 19 }; 20 21}