pythonPackages.diff-match-patch: init at 20121119
This commit is contained in:
parent
f89fd55833
commit
6d9ec9efcf
18
pkgs/development/python-modules/diff-match-patch/default.nix
Normal file
18
pkgs/development/python-modules/diff-match-patch/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user