py-fuzzywuzzy: add new package (#24789)

This commit is contained in:
Adam J. Stewart 2021-07-09 10:51:52 -05:00 committed by GitHub
parent d734df705a
commit b4e757dc35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,21 @@
# Copyright 2013-2021 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 PyFuzzywuzzy(PythonPackage):
"""Fuzzy string matching in python."""
homepage = "https://github.com/seatgeek/fuzzywuzzy"
pypi = "fuzzywuzzy/fuzzywuzzy-0.18.0.tar.gz"
version('0.18.0', sha256='45016e92264780e58972dca1b3d939ac864b78437422beecebb3095f8efd00e8')
variant('speedup', default=False, description='Provide a 4-10x speedup')
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-python-levenshtein@0.12:', when='+speedup', type=('build', 'run'))