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