python3Packages.json-merge-patch: 0.2 -> 0.3.0

This commit was automatically generated using update-python-libraries.

+7 -14
+7 -14
pkgs/development/python-modules/json-merge-patch/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - fetchpatch, 5 + setuptools, 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 9 pname = "json-merge-patch"; 10 - version = "0.2"; 11 - format = "setuptools"; 10 + version = "0.3.0"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 - inherit pname version; 15 - sha256 = "09898b6d427c08754e2a97c709cf2dfd7e28bd10c5683a538914975eab778d39"; 14 + pname = "json_merge_patch"; 15 + inherit version; 16 + sha256 = "sha256-SgItePwvCctJ2Wxkbvw4DTterStcfaviLDkowsLpxOA="; 16 17 }; 17 18 18 - patches = [ 19 - # This prevented tests from running (was using a relative import) 20 - # https://github.com/OpenDataServices/json-merge-patch/pull/1 21 - (fetchpatch { 22 - name = "fully-qualified-json-merge-patch-import-on-tests"; 23 - url = "https://patch-diff.githubusercontent.com/raw/OpenDataServices/json-merge-patch/pull/1.patch"; 24 - sha256 = "1k6xsrxsmz03nwcqsf4gf0zsfnl2r20n83npic8z6bqlpl4lidl4"; 25 - }) 26 - ]; 19 + build-system = [ setuptools ]; 27 20 28 21 meta = with lib; { 29 22 description = "JSON Merge Patch library";