1{ lib
2, buildPythonPackage
3, fetchPypi
4, jsonpointer
5}:
6
7buildPythonPackage rec {
8 pname = "jsonpatch";
9 version = "1.32";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "b6ddfe6c3db30d81a96aaeceb6baf916094ffa23d7dd5fa2c13e13f8b6e600c2";
14 };
15
16 # test files are missing
17 doCheck = false;
18 propagatedBuildInputs = [ jsonpointer ];
19
20 meta = {
21 description = "Library to apply JSON Patches according to RFC 6902";
22 homepage = "https://github.com/stefankoegl/python-json-patch";
23 license = lib.licenses.bsd2; # "Modified BSD license, says pypi"
24 };
25}