2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
21 lines
448 B
Nix
21 lines
448 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonpointer";
|
|
version = "2.4";
|
|
|
|
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"
|
|
};
|
|
|
|
}
|