summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonpointer/default.nix
blob: c07a4bf3a358af38b10bfd7f59c9501859f338f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "jsonpointer";
  version = "1.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "39403b47a71aa782de6d80db3b78f8a5f68ad8dfc9e674ca3bb5b32c15ec7308";
  };

  meta = with stdenv.lib; {
    description = "Resolve JSON Pointers in Python";
    homepage = "https://github.com/stefankoegl/python-json-pointer";
    license = stdenv.lib.licenses.bsd2; # "Modified BSD license, says pypi"
  };

}