spack/var/spack/repos/builtin/packages/py-fuzzywuzzy/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

22 lines
782 B
Python

# Copyright 2013-2023 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.package 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"))