pythonPackages.diff-match-patch: init at 20121119

This commit is contained in:
betaboon 2017-08-31 21:02:34 +02:00 committed by Frederik Rietdijk
parent f89fd55833
commit 6d9ec9efcf
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "diff-match-patch";
name = "${pname}-${version}";
version = "20121119";
meta = {
homepage = https://code.google.com/p/google-diff-match-patch/;
description = "Diff, Match and Patch libraries for Plain Text";
license = lib.licenses.asl20;
};
src = fetchPypi {
inherit pname version;
sha256 = "0k1f3v8nbidcmmrk65m7h8v41jqi37653za9fcs96y7jzc8mdflx";
};
}

View File

@ -173,6 +173,8 @@ in {
distorm3 = callPackage ../development/python-modules/distorm3 { };
diff-match-patch = callPackage ../development/python-modules/diff-match-patch { };
h5py = callPackage ../development/python-modules/h5py {
hdf5 = pkgs.hdf5;
};