about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/jsonmerge/default.nix
blob: 44944c03500b1ae447dd59c4d9da07b8c401d5b6 (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.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "03l2j1lrcwcp7af4x8agxnkib0ndybfrbhn2gi7mnk6gbxfw1aw3";
  };

  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 ];
  };
}