summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-tempita/package.py
blob: bd828ee25a9807563a6a00ae895e2b3a44fe58d4 (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 PyTempita(PythonPackage):
    """A very small text templating language"""

    homepage = "https://pypi.org/project/Tempita"
    pypi = "tempita/Tempita-0.5.2.tar.gz"

    license("MIT")

    version("0.5.2", sha256="cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c")

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