summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/diff-match-patch
diff options
context:
space:
mode:
authorbetaboon <betaboon@0x80.ninja>2017-08-31 21:02:34 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-09-07 09:28:02 +0200
commit6d9ec9efcf5d7deb136778affdc9b90df7c2c499 (patch)
tree6208d7d11030d8952500814a3f37a7faeeab28a0 /pkgs/development/python-modules/diff-match-patch
parentpythonPackages.asana: init at 0.6.2 (diff)
downloadnixpkgs-6d9ec9efcf5d7deb136778affdc9b90df7c2c499.tar.gz
pythonPackages.diff-match-patch: init at 20121119
Diffstat (limited to 'pkgs/development/python-modules/diff-match-patch')
-rw-r--r--pkgs/development/python-modules/diff-match-patch/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/diff-match-patch/default.nix b/pkgs/development/python-modules/diff-match-patch/default.nix
new file mode 100644
index 000000000000..7907f1ffac0b
--- /dev/null
+++ b/pkgs/development/python-modules/diff-match-patch/default.nix
@@ -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";
+ };
+}