summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pexpect/package.py
blob: 85ed20ac812a97ec65b386eaeae031607530002f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2013-2018 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 import *


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

    version('4.2.1', '3694410001a99dff83f0b500a1ca1c95')
    version('3.3', '0de72541d3f1374b795472fed841dce8')

    depends_on('py-ptyprocess', type=('build', 'run'))