summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-zope-event/package.py
blob: a2f0e6ecc11042dba19d6cfbf7ab2198efde37cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyZopeEvent(PythonPackage):
    """Very basic event publishing system."""

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

    # FIXME: No idea why this import test fails.
    # Maybe some kind of namespace issue?
    # import_modules = ['zope.event']

    version('4.3.0', '8ca737960741c6fd112972f3313303bd')

    depends_on('py-setuptools', type='build')