biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / jsonpointer / default.nix
blob5017a0da27d651ac115f4a4d85cbee8f36744fab
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "jsonpointer";
9   version = "3.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-Ky1ynyCRUi1hw7MfguEYcPYLaPQ/vHBct2v0uDKvWe8=";
15   };
17   meta = with lib; {
18     description = "Resolve JSON Pointers in Python";
19     mainProgram = "jsonpointer";
20     homepage = "https://github.com/stefankoegl/python-json-pointer";
21     license = licenses.bsd2; # "Modified BSD license, says pypi"
22   };