summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pexpect/package.py
blob: ff5fac84e0600e21bfee384f9768cda8244402d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
from spack import *

class PyPexpect(Package):
    """Pexpect allows easy control of interactive console applications."""
    homepage = "https://pypi.python.org/pypi/pexpect"
    url      = "https://pypi.python.org/packages/source/p/pexpect/pexpect-3.3.tar.gz"

    version('3.3', '0de72541d3f1374b795472fed841dce8')

    extends('python')

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