summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-levenshtein/package.py
blob: a19247c6fe19a1360be3d9ee62d44e6e4ac1a438 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class PyPythonLevenshtein(PythonPackage):
    """Python extension for computing string edit distances and
    similarities."""

    homepage = "https://github.com/ztane/python-Levenshtein"
    url      = "https://pypi.io/packages/source/p/python-Levenshtein/python-Levenshtein-0.12.0.tar.gz"

    version('0.12.0', 'e8cde197d6d304bbdc3adae66fec99fb')

    depends_on('py-setuptools', type='build')