2019-08-12 04:02:39 -07:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
jsonschema,
|
2022-09-17 16:34:22 +08:00
|
|
|
pytestCheckHook,
|
2019-08-12 04:02:39 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jsonmerge";
|
2023-07-26 07:22:28 +00:00
|
|
|
version = "1.9.2";
|
2019-08-12 04:02:39 -07:00
|
|
|
|
2023-08-01 22:54:23 -07:00
|
|
|
format = "setuptools";
|
|
|
|
|
2019-08-12 04:02:39 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-07-26 07:22:28 +00:00
|
|
|
hash = "sha256-xDdX4BgLDhm3rkwTCtQqB8xYDDGRL2H0gj6Ory+jlKM=";
|
2019-08-12 04:02:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ jsonschema ];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
2022-09-17 16:34:22 +08:00
|
|
|
|
2019-08-12 04:02:39 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Merge a series of JSON documents";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/avian2/jsonmerge";
|
2019-08-12 04:02:39 -07:00
|
|
|
changelog = "https://github.com/avian2/jsonmerge/blob/jsonmerge-${version}/ChangeLog";
|
|
|
|
license = licenses.mit;
|
2024-06-15 12:37:52 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2019-08-12 04:02:39 -07:00
|
|
|
};
|
|
|
|
}
|