504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
22 lines
473 B
Nix
22 lines
473 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";
|
|
homepage = "https://github.com/stefankoegl/python-json-pointer";
|
|
license = licenses.bsd2; # "Modified BSD license, says pypi"
|
|
};
|
|
|
|
}
|