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