1{ lib
2, buildPythonPackage
3, fetchPypi
4, jsonpointer
5}:
6
7buildPythonPackage rec {
8 pname = "jsonpatch";
9 version = "1.24";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "cbb72f8bf35260628aea6b508a107245f757d1ec839a19c34349985e2c05645a";
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}