summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-liac-arff/package.py
blob: 926e55a79f9a10f19971709e6cbbc3cd79ac21dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2022 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 PyLiacArff(PythonPackage):
    """The liac-arff module implements functions to read and
    write ARFF files in Python."""

    homepage = "https://github.com/renatopp/liac-arff"
    pypi     = "liac-arff/liac-arff-2.5.0.tar.gz"

    version('2.5.0', sha256='3220d0af6487c5aa71b47579be7ad1d94f3849ff1e224af3bf05ad49a0b5c4da')

    depends_on('python@2.7:2.999,3.5:', type=('build', 'run'))
    depends_on('py-setuptools', type='build')
    depends_on('py-cython', type='build')