diff options
author | rvinaybharadwaj <vinayr@lanl.gov> | 2020-10-08 07:04:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 07:04:01 -0600 |
commit | 865e483abcd1754b5056841e08e037eb02fd71db (patch) | |
tree | aac59b253d994d4bf3896970a009be1ac0add9fa | |
parent | bd8e307e82be0d8240f34b7c27d7cdd538045293 (diff) | |
download | spack-865e483abcd1754b5056841e08e037eb02fd71db.tar.gz spack-865e483abcd1754b5056841e08e037eb02fd71db.tar.bz2 spack-865e483abcd1754b5056841e08e037eb02fd71db.tar.xz spack-865e483abcd1754b5056841e08e037eb02fd71db.zip |
Add py-sentry-sdk (#19173)
-rw-r--r-- | var/spack/repos/builtin/packages/py-sentry-sdk/package.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sentry-sdk/package.py b/var/spack/repos/builtin/packages/py-sentry-sdk/package.py new file mode 100644 index 0000000000..6214b0c7d8 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-sentry-sdk/package.py @@ -0,0 +1,34 @@ +# Copyright 2013-2020 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 PySentrySdk(PythonPackage): + """The new Python SDK for Sentry.io""" + + homepage = "https://github.com/getsentry/sentry-python" + url = "https://pypi.io/packages/source/s/sentry-sdk/sentry-sdk-0.17.6.tar.gz" + + version('0.17.6', sha256='1a086486ff9da15791f294f6e9915eb3747d161ef64dee2d038a4d0b4a369b24') + + depends_on('python@2.7,3.4:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-urllib3@1.10.0:', type=('build', 'run')) + depends_on('py-certifi', type=('build', 'run')) + depends_on('py-flask@0.11:', type=('build', 'run')) + depends_on('py-bottle@0.12.13:', type=('build', 'run')) + depends_on('py-falcon@1.4:', type=('build', 'run')) + depends_on('py-django@1.8:', type=('build', 'run')) + depends_on('py-sanic@0.8:', type=('build', 'run')) + depends_on('py-celery@3:', type=('build', 'run')) + depends_on('py-apache-beam@2.12:', type=('build', 'run')) + depends_on('py-rq@0.6:', type=('build', 'run')) + depends_on('py-aiohttp@3.5:', type=('build', 'run')) + depends_on('py-tornado@5:', type=('build', 'run')) + depends_on('py-sqlalchemy@1.2:', type=('build', 'run')) + depends_on('py-pyspark@2.4.4:', type=('build', 'run')) + depends_on('py-pure-eval', type=('build', 'run')) + depends_on('py-chalice@1.16.0:', type=('build', 'run')) |