1{ lib
2, buildPythonPackage
3, fetchPypi
4, jsonschema
5}:
6
7buildPythonPackage rec {
8 pname = "jsonmerge";
9 version = "1.7.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "2004a421890311176136fb911c339c4bab45984808814feaed6a328c6e211ba2";
14 };
15
16 propagatedBuildInputs = [ jsonschema ];
17
18 meta = with lib; {
19 description = "Merge a series of JSON documents";
20 homepage = "https://github.com/avian2/jsonmerge";
21 changelog = "https://github.com/avian2/jsonmerge/blob/jsonmerge-${version}/ChangeLog";
22 license = licenses.mit;
23 maintainers = with maintainers; [ emily ];
24 };
25}