2021-01-24 00:29:22 +00:00
|
|
|
{ lib
|
2018-10-16 04:42:53 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jsonpointer";
|
2021-03-24 09:28:15 +00:00
|
|
|
version = "2.1";
|
2018-10-16 04:42:53 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 09:28:15 +00:00
|
|
|
sha256 = "5a34b698db1eb79ceac454159d3f7c12a451a91f6334a4f638454327b7a89962";
|
2018-10-16 04:42:53 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-16 04:42:53 +01:00
|
|
|
description = "Resolve JSON Pointers in Python";
|
|
|
|
homepage = "https://github.com/stefankoegl/python-json-pointer";
|
2021-01-24 00:29:22 +00:00
|
|
|
license = licenses.bsd2; # "Modified BSD license, says pypi"
|
2018-10-16 04:42:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|