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