summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorvictorusu <victorusu@users.noreply.github.com>2020-06-09 20:54:59 +0200
committerGitHub <noreply@github.com>2020-06-09 11:54:59 -0700
commita52945613dfc5ba646ca74ae7187cb82b3e6931b (patch)
treefb7dda95453a0426c8f896ae95c6eaf5c64fc1e9 /var
parent07e97e3ebc5a0b1594f7bc815aca441f99de5141 (diff)
downloadspack-a52945613dfc5ba646ca74ae7187cb82b3e6931b.tar.gz
spack-a52945613dfc5ba646ca74ae7187cb82b3e6931b.tar.bz2
spack-a52945613dfc5ba646ca74ae7187cb82b3e6931b.tar.xz
spack-a52945613dfc5ba646ca74ae7187cb82b3e6931b.zip
New package: py-pygelf (#17004)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pygelf/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pygelf/package.py b/var/spack/repos/builtin/packages/py-pygelf/package.py
new file mode 100644
index 0000000000..c2b20b5703
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pygelf/package.py
@@ -0,0 +1,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"
+ url = "https://pypi.io/packages/source/p/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')