depot/third_party/nixpkgs/pkgs/development/python-modules/jsonpointer/default.nix

22 lines
463 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "jsonpointer";
version = "2.2";
src = fetchPypi {
inherit pname version;
sha256 = "f09f8deecaaa5aea65b5eb4f67ca4e54e1a61f7a11c75085e360fe6feb6a48bf";
};
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"
};
}