587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
23 lines
506 B
Nix
23 lines
506 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonpointer";
|
|
version = "2.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-WFzugrcCEfqeYEO3u4nbbhqklSQ0Dd6K1rYyBuponYg=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Resolve JSON Pointers in Python";
|
|
mainProgram = "jsonpointer";
|
|
homepage = "https://github.com/stefankoegl/python-json-pointer";
|
|
license = licenses.bsd2; # "Modified BSD license, says pypi"
|
|
};
|
|
|
|
}
|