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

class PyMock(Package):
    """mock is a library for testing in Python. It allows you to replace parts
    of your system under test with mock objects and make assertions about how
    they have been used."""

    homepage = "https://github.com/testing-cabal/mock"
    url      = "https://pypi.python.org/packages/source/m/mock/mock-1.3.0.tar.gz"

    version('1.3.0', '73ee8a4afb3ff4da1b4afa287f39fdeb')

    extends('python')
    depends_on('py-pbr')
    depends_on('py-setuptools@17.1:')

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