summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-crfsuite/package.py
blob: 6c8fd4fd69ac18d780d377681ac1f20b3a96ea70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2024 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 PyPythonCrfsuite(PythonPackage):
    """python-crfsuite is a python binding to CRFsuite."""

    homepage = "https://github.com/scrapinghub/python-crfsuite"
    pypi = "python-crfsuite/python-crfsuite-0.9.7.tar.gz"

    license("MIT")

    version("0.9.7", sha256="3b4538d2ce5007e4e42005818247bf43ade89ef08a66d158462e2f7c5d63cee7")

    depends_on("py-setuptools", type="build")
    depends_on("py-cython", type="build")