1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "diff-match-patch"; 5 version = "20121119"; 6 7 meta = { 8 homepage = https://code.google.com/p/google-diff-match-patch/; 9 description = "Diff, Match and Patch libraries for Plain Text"; 10 license = lib.licenses.asl20; 11 }; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "0k1f3v8nbidcmmrk65m7h8v41jqi37653za9fcs96y7jzc8mdflx"; 16 }; 17}