summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-spacy-legacy/package.py
blob: b144d5ac6593728ceaaacef9b342469491af456b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 PySpacyLegacy(PythonPackage):
    """Legacy registered functions for spaCy backwards compatibility"""

    homepage = "https://spacy.io/"
    pypi = "spacy-legacy/spacy-legacy-3.0.12.tar.gz"

    license("MIT")

    version("3.0.12", sha256="b37d6e0c9b6e1d7ca1cf5bc7152ab64a4c4671f59c85adaf7a3fcb870357a774")

    depends_on("python@3.6:", type=("build", "run"))
    depends_on("py-setuptools", type="build")