* py-cleo: add versions 2.0.0 2.0.1; add maintainers * py-cleo: add forgotten dependence * py-cleo: update from review: remove preferred version, remove a dependence, fix py-rapidfuzz version * py-cleo: deprecated version 1.0.0a5; add version 1.0.0; update dependences * py-cleo: add version 2.1.0; update version range of dependences * py-crashtest: add version 0.4.1, dependence of py-cleo * py-cleo: update dependence Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-cleo: update dependence py-clikit Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-cleo: update dependence py-rapidfuzz Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-rapidfuzz: add version 2.2.0 dependence of py-cleo@2 * py-cleo: fix version range of py-crashtest * py-rapidfuzz: fix dependences; add py-rapidfuzz-capi and py-jarowinkler --------- Co-authored-by: LydDeb <lyderic.debusschere@eolen.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
22 lines
659 B
Python
22 lines
659 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 PyRapidfuzzCapi(PythonPackage):
|
|
"""
|
|
C-API of RapidFuzz, which can be used to extend RapidFuzz from separate packages.
|
|
"""
|
|
|
|
homepage = "https://github.com/maxbachmann/rapidfuzz_capi"
|
|
pypi = "rapidfuzz_capi/rapidfuzz_capi-1.0.5.tar.gz"
|
|
|
|
maintainers("LydDeb")
|
|
|
|
version("1.0.5", sha256="b3af179874b28364ba1b7850e37d0d353de9cf5b844e3569c023b74da3a9c68e")
|
|
|
|
depends_on("py-setuptools", type="build")
|