1{ lib 2, buildPythonPackage 3, fetchPypi 4, jsonschema 5}: 6 7buildPythonPackage rec { 8 pname = "jsonmerge"; 9 version = "1.8.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "a86bfc44f32f6a28b749743df8960a4ce1930666b3b73882513825f845cb9558"; 14 }; 15 16 propagatedBuildInputs = [ jsonschema ]; 17 18 meta = with lib; { 19 description = "Merge a series of JSON documents"; 20 homepage = "https://github.com/avian2/jsonmerge"; 21 changelog = "https://github.com/avian2/jsonmerge/blob/jsonmerge-${version}/ChangeLog"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ emily ]; 24 }; 25}