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