summaryrefslogtreecommitdiff
path: root/var/spack/packages/py-mako/package.py
blob: 3e91ffd8e57f678458caaee831da72c2208e4231 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from spack import *

class PyMako(Package):
    """A super-fast templating language that borrows the best 
    ideas from the existing templating languages."""

    homepage = "https://pypi.python.org/pypi/mako"
    url      = "https://pypi.python.org/packages/source/M/Mako/Mako-1.0.1.tar.gz"

    version('1.0.1', '9f0aafd177b039ef67b90ea350497a54')

    depends_on('py-setuptools')
    extends('python')

    def install(self, spec, prefix):
        python('setup.py', 'install', '--prefix=%s' % prefix)