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

buildPythonPackage rec {
  pname = "jsonpointer";
  version = "2.4";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-WFzugrcCEfqeYEO3u4nbbhqklSQ0Dd6K1rYyBuponYg=";
  };

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

}