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