2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2021-07-09 23:51:52 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2021-07-09 23:51:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
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"))
|