diff options
author | Lydéric Debusschère <lyderic.de@gmail.com> | 2024-05-31 21:36:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 12:36:02 -0700 |
commit | 8dde7f39754c3e719fd07367db6fb6fa13ec6c27 (patch) | |
tree | b092450599efec470c20bc45459f46c0110b6866 | |
parent | 0cd038273e16f1fe188a50142b073ebd550a5b0e (diff) | |
download | spack-8dde7f39754c3e719fd07367db6fb6fa13ec6c27.tar.gz spack-8dde7f39754c3e719fd07367db6fb6fa13ec6c27.tar.bz2 spack-8dde7f39754c3e719fd07367db6fb6fa13ec6c27.tar.xz spack-8dde7f39754c3e719fd07367db6fb6fa13ec6c27.zip |
py-junit2html: new package, version '31.0.2' (#44399)
* py-junit2html: new package, version '31.0.2'
* py-junit2html: install from sources instead of from wheel
-rw-r--r-- | var/spack/repos/builtin/packages/py-junit2html/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-junit2html/package.py b/var/spack/repos/builtin/packages/py-junit2html/package.py new file mode 100644 index 0000000000..d6965674b8 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-junit2html/package.py @@ -0,0 +1,23 @@ +# 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 PyJunit2html(PythonPackage): + """ + Simple self-contained python tool to produce a single html file from a single junit xml file. + """ + + homepage = "https://gitlab.com/inorton/junit2html" + + url = "https://gitlab.com/inorton/junit2html/-/archive/v31.0.2/junit2html-v31.0.2.tar.gz" + + maintainers("LydDeb") + + version("31.0.2", sha256="8d90ae83163dde6bf0bde9c3e8d21c0ab0796de7c5f33917cfdbb9d319212213") + + depends_on("py-setuptools", type=("build")) + depends_on("py-jinja2@3.0:", type=("build", "run")) |