1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "jsonpointer"; 8 version = "2.3"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "sha256-l8ulFSbIKSgiGP65nasbHmvfjv0cQ9ydV74JPA1pyZo="; 13 }; 14 15 meta = with lib; { 16 description = "Resolve JSON Pointers in Python"; 17 homepage = "https://github.com/stefankoegl/python-json-pointer"; 18 license = licenses.bsd2; # "Modified BSD license, says pypi" 19 }; 20 21}