2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
fetchpatch,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "json-merge-patch";
|
|
|
|
version = "0.2";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "09898b6d427c08754e2a97c709cf2dfd7e28bd10c5683a538914975eab778d39";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# This prevented tests from running (was using a relative import)
|
|
|
|
# https://github.com/OpenDataServices/json-merge-patch/pull/1
|
2024-06-05 15:53:02 +00:00
|
|
|
(fetchpatch {
|
|
|
|
name = "fully-qualified-json-merge-patch-import-on-tests";
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/OpenDataServices/json-merge-patch/pull/1.patch";
|
|
|
|
sha256 = "1k6xsrxsmz03nwcqsf4gf0zsfnl2r20n83npic8z6bqlpl4lidl4";
|
|
|
|
})
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "JSON Merge Patch library";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "json-merge-patch";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/open-contracting/json-merge-patch";
|
|
|
|
license = licenses.bsd3;
|
2023-08-04 22:07:22 +00:00
|
|
|
maintainers = [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|