summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pygelf/package.py
blob: 1afa96fd976148ab1ee877023e7285302012d2e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 PyPygelf(PythonPackage):
    """Python logging handlers with GELF (Graylog Extended Log Format)
    support."""

    homepage = "https://github.com/keeprocking/pygelf"
    pypi = "pygelf/pygelf-0.3.6.tar.gz"

    # notify when the package is updated.
    maintainers = ['victorusu', 'vkarak']

    version('0.3.6', sha256='3e5bc59e3b5a754556a76ff2c69fcf2003218ad7b5ff8417482fa1f6a7eba5f9')

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