Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 25 lines 591 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, jsonschema 5}: 6 7buildPythonPackage rec { 8 pname = "jsonmerge"; 9 version = "1.6.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "03l2j1lrcwcp7af4x8agxnkib0ndybfrbhn2gi7mnk6gbxfw1aw3"; 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}