summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pystache/package.py
blob: 8ef58a78035f0c7d4236bfa2fe53c0d750cd09ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 PyPystache(PythonPackage):
    """Pystache is a Python implementation of Mustache. Mustache is a
    framework-agnostic, logic-free templating system inspired by ctemplate and
    et."""

    homepage = "https://github.com/sarnold/pystache"
    git = "https://github.com/sarnold/pystache"
    pypi = "pystache/pystache-0.6.0.tar.gz"

    version("0.6.0", sha256="93bf92b2149a4c4b58d12142e2c4c6dd5c08d89e4c95afccd4b6efe2ee1d470d")

    depends_on("py-setuptools@40.8:", type="build")