summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-mock/package.py
blob: 861ca10f9c83aa9ff36afa5d10934867ddeb6ff4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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 PyMock(PythonPackage):
    """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.io/packages/source/m/mock/mock-1.3.0.tar.gz"

    version('2.0.0', '0febfafd14330c9dcaa40de2d82d40ad')
    version('1.3.0', '73ee8a4afb3ff4da1b4afa287f39fdeb')

    depends_on('py-pbr@0.11:', type=('build', 'run'))
    depends_on('py-six@1.7:',  type=('build', 'run'))
    depends_on('py-six@1.9:',  type=('build', 'run'), when='@2.0.0:')
    # requirements.txt references @1:, but 0.4 is newest available..
    depends_on('py-funcsigs',  type=('build', 'run'), when='^python@:3.2.99')
    depends_on('py-setuptools@17.1:', type='build')