summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-zope-interface/package.py
blob: 0fd1b3bee56fa9d8c470137658e4b9d4a2509d6f (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
26
27
28
29
# 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 PyZopeInterface(PythonPackage):
    """This package provides an implementation of "object interfaces" for
    Python. Interfaces are a mechanism for labeling objects as conforming to a
    given API or contract. So, this package can be considered as implementation
    of the Design By Contract methodology support in Python."""

    homepage = "https://github.com/zopefoundation/zope.interface"
    url      = "https://pypi.io/packages/source/z/zope.interface/zope.interface-4.5.0.tar.gz"

    # FIXME: No idea why these import tests fail.
    # Maybe some kind of namespace issue?
    # import_modules = ['zope.interface', 'zope.interface.common']

    version('4.5.0', '7b669cd692d817772c61d2e3ad0f1e71')

    depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))

    depends_on('py-setuptools', type='build')
    depends_on('py-zope-event', type='test')
    depends_on('py-nose', type='test')
    depends_on('py-coverage', type='test')