summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-applicationinsights/package.py
blob: 495317c62482b306cdc9181f8184e68e247d4baf (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
# 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.package import *


class PyApplicationinsights(PythonPackage):
    """This project extends the Application Insights API surface to support
    Python."""

    homepage = "https://github.com/Microsoft/ApplicationInsights-Python"
    pypi = "applicationinsights/applicationinsights-0.11.9.tar.gz"

    # 'applicationinsights.django' requires 'django', but 'django' isn't listed as a
    # dependency. Leave out of 'import_modules' list to avoid unnecessary dependency.
    import_modules = [
        'applicationinsights', 'applicationinsights.flask',
        'applicationinsights.exceptions', 'applicationinsights.requests',
        'applicationinsights.channel', 'applicationinsights.channel.contracts',
        'applicationinsights.logging'
    ]

    version('0.11.9', sha256='30a11aafacea34f8b160fbdc35254c9029c7e325267874e3c68f6bdbcd6ed2c3')

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