2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jsonpointer";
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "3.0.0";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-Ky1ynyCRUi1hw7MfguEYcPYLaPQ/vHBct2v0uDKvWe8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Resolve JSON Pointers in Python";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "jsonpointer";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/stefankoegl/python-json-pointer";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = licenses.bsd2; # "Modified BSD license, says pypi"
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|