summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-logstash/package.py
blob: b74af66b736f04942f02082562d1cd1f611c20fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2024 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 PyPythonLogstash(PythonPackage):
    """Python logging handler for Logstash."""

    homepage = "https://github.com/vklochan/python-logstash"
    pypi = "python-logstash/python-logstash-0.4.6.tar.gz"

    license("MIT")

    version("0.4.6", sha256="10943e5df83f592b4d61b63ad1afff855ccc8c9467f78718f0a59809ba1fe68c")

    # pip silently replaces distutils with setuptools
    depends_on("py-setuptools", type="build")