summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonmerge/default.nix
blob: 4fc558fd394e396a3b28d1ac12a79ce7d5ebb989 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, jsonschema
}:

buildPythonPackage rec {
  pname = "jsonmerge";
  version = "1.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2004a421890311176136fb911c339c4bab45984808814feaed6a328c6e211ba2";
  };

  propagatedBuildInputs = [ jsonschema ];

  meta = with lib; {
    description = "Merge a series of JSON documents";
    homepage = "https://github.com/avian2/jsonmerge";
    changelog = "https://github.com/avian2/jsonmerge/blob/jsonmerge-${version}/ChangeLog";
    license = licenses.mit;
    maintainers = with maintainers; [ emily ];
  };
}