about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/jsonpointer/default.nix
blob: 6971393b80c924b69f143534ce349ba40c5d3b01 (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 = "2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0qjkjy1qlyc1nl3k95wd03ssxac0a717x8889ypgs1cfcj3bm4n1";
  };

  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"
  };

}