summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-raven/package.py
blob: 4ac31217bc1e3fd122810643e87f8d71307d582c (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-2022 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 PyRaven(PythonPackage):
    """Raven is a client for Sentry."""

    homepage = "https://github.com/getsentry/raven-python"
    pypi = "raven/raven-6.10.0.tar.gz"

    version('6.10.0', sha256='3fa6de6efa2493a7c827472e984ce9b020797d0da16f1db67197bcc23c8fae54')

    variant('flask', default=False, description='Build flask backend')

    depends_on('py-setuptools', type='build')
    depends_on('py-flask@0.8:', when='+flask', type=('build', 'run'))
    depends_on('py-blinker@1.1:', when='+flask', type=('build', 'run'))