summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-texttable/package.py
blob: 61a442f88866042276a236aaeff40b388d0f5d5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2021 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 import *


class PyTexttable(PythonPackage):
    """Python module for creating simple ASCII tables."""

    homepage = "https://github.com/foutaise/texttable/"
    pypi = "texttable/texttable-1.6.1.tar.gz"

    version('1.6.1', sha256='2b60a5304ccfbeac80ffae7350d7c2f5d7a24e9aab5036d0f82489746419d9b2')

    depends_on('py-setuptools', type='build')