1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 jsonschema,
6 pytestCheckHook,
7}:
8
9buildPythonPackage rec {
10 pname = "jsonmerge";
11 version = "1.9.2";
12
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-xDdX4BgLDhm3rkwTCtQqB8xYDDGRL2H0gj6Ory+jlKM=";
18 };
19
20 propagatedBuildInputs = [ jsonschema ];
21
22 nativeCheckInputs = [ pytestCheckHook ];
23
24 meta = with lib; {
25 description = "Merge a series of JSON documents";
26 homepage = "https://github.com/avian2/jsonmerge";
27 changelog = "https://github.com/avian2/jsonmerge/blob/jsonmerge-${version}/ChangeLog";
28 license = licenses.mit;
29 maintainers = [ ];
30 };
31}