summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhealther <healther@users.noreply.github.com>2017-11-29 00:43:00 +0100
committerChristoph Junghans <christoph.junghans@gmail.com>2017-11-28 16:43:00 -0700
commitcab07d2562c69ac5ba7c84c43f565489e67ed558 (patch)
tree6bfc1671a057d0e30ee3f3a5bb8e56114c88b066
parent82adc403adba75647f7442726f5579bb88e5daab (diff)
downloadspack-cab07d2562c69ac5ba7c84c43f565489e67ed558.tar.gz
spack-cab07d2562c69ac5ba7c84c43f565489e67ed558.tar.bz2
spack-cab07d2562c69ac5ba7c84c43f565489e67ed558.tar.xz
spack-cab07d2562c69ac5ba7c84c43f565489e67ed558.zip
add package py-editdistance (#6492)
-rw-r--r--var/spack/repos/builtin/packages/py-editdistance/package.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-editdistance/package.py b/var/spack/repos/builtin/packages/py-editdistance/package.py
new file mode 100644
index 0000000000..8224b18514
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-editdistance/package.py
@@ -0,0 +1,36 @@
+##############################################################################
+# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class PyEditdistance(PythonPackage):
+ """Fast implementation of the edit distance (Levenshtein distance)."""
+
+ homepage = "http://www.example.com://github.com/aflc/editdistance"
+ url = "https://pypi.io/packages/source/e/editdistance/editdistance-0.4.tar.gz"
+
+ version('0.4', '27434720ca0930a9b6974b182b6237bc')
+
+ depends_on('py-setuptools', type='build')