summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-prometheus-client/package.py
blob: ecff7f252c23af230e113d812fbabee4c0ecafb9 (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
30
31
32
33
# 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 PyPrometheusClient(PythonPackage):
    """Prometheus instrumentation library for Python applications."""

    pypi = "prometheus_client/prometheus_client-0.7.1.tar.gz"

    version('0.7.1', sha256='71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da')
    version('0.7.0', sha256='ee0c90350595e4a9f36591f291e6f9933246ea67d7cd7d1d6139a9781b14eaae')
    version('0.5.0', sha256='e8c11ff5ca53de6c3d91e1510500611cafd1d247a937ec6c588a0a7cc3bef93c')

    variant('twisted', default=False, description='Expose metrics as a twisted resource')

    depends_on('py-setuptools', type='build')
    depends_on('py-twisted', type=('build', 'run'), when='+twisted')

    @property
    def import_modules(self):
        modules = [
            'prometheus_client', 'prometheus_client.openmetrics',
            'prometheus_client.bridge'
        ]

        if '+twisted' in self.spec:
            modules.append('prometheus_client.twisted')

        return modules