Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / jsonmerge / default.nix
blob83275f54a9b4b1ac4063c5745c1f44a2459089dc
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , jsonschema
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "jsonmerge";
10   version = "1.9.2";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-xDdX4BgLDhm3rkwTCtQqB8xYDDGRL2H0gj6Ory+jlKM=";
17   };
19   propagatedBuildInputs = [ jsonschema ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   meta = with lib; {
24     description = "Merge a series of JSON documents";
25     homepage = "https://github.com/avian2/jsonmerge";
26     changelog = "https://github.com/avian2/jsonmerge/blob/jsonmerge-${version}/ChangeLog";
27     license = licenses.mit;
28     maintainers = with maintainers; [ emily ];
29   };