2021-01-24 01:29:22 +01:00
|
|
|
{ lib
|
2018-10-15 23:42:53 -04:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jsonpointer";
|
2022-07-16 12:59:14 +02:00
|
|
|
version = "2.3";
|
2018-10-15 23:42:53 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-03 01:48:06 +01:00
|
|
|
hash = "sha256-l8ulFSbIKSgiGP65nasbHmvfjv0cQ9ydV74JPA1pyZo=";
|
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";
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|