2021-01-24 01:29:22 +01:00
|
|
|
{
|
|
|
|
lib,
|
2018-10-15 23:42:53 -04:00
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jsonpointer";
|
2024-06-19 05:06:06 +02:00
|
|
|
version = "3.0.0";
|
2023-12-07 16:53:02 +13:00
|
|
|
format = "setuptools";
|
2018-10-15 23:42:53 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-06-19 05:06:06 +02:00
|
|
|
hash = "sha256-Ky1ynyCRUi1hw7MfguEYcPYLaPQ/vHBct2v0uDKvWe8=";
|
2018-10-15 23:42:53 -04:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-15 23:42:53 -04:00
|
|
|
description = "Resolve JSON Pointers in Python";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "jsonpointer";
|
2018-10-15 23:42:53 -04:00
|
|
|
homepage = "https://github.com/stefankoegl/python-json-pointer";
|
2021-01-24 01:29:22 +01:00
|
|
|
license = licenses.bsd2; # "Modified BSD license, says pypi"
|
2018-10-15 23:42:53 -04:00
|
|
|
};
|
|
|
|
}
|