summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorBenjamin Meyers <meyersbs@users.noreply.github.com>2023-03-31 10:32:31 -0400
committerGitHub <noreply@github.com>2023-03-31 09:32:31 -0500
commit27978fd3558329ab52cdc5e1863a79798ff9ba4d (patch)
treeef2faf4887e10dac2cd958a090c6eac6de78088b /var
parent349b5d982b00f864970dcc3337f50d10bfca1121 (diff)
downloadspack-27978fd3558329ab52cdc5e1863a79798ff9ba4d.tar.gz
spack-27978fd3558329ab52cdc5e1863a79798ff9ba4d.tar.bz2
spack-27978fd3558329ab52cdc5e1863a79798ff9ba4d.tar.xz
spack-27978fd3558329ab52cdc5e1863a79798ff9ba4d.zip
New package py-json2html (#36111)
* New package py-json2html * Remove deprecated python deps
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-json2html/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-json2html/package.py b/var/spack/repos/builtin/packages/py-json2html/package.py
new file mode 100644
index 0000000000..99b33e9eef
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-json2html/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2023 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 PyJson2html(PythonPackage):
+ """Python wrapper to convert JSON into a human readable HTML Table
+ representation."""
+
+ homepage = "https://github.com/softvar/json2html"
+ pypi = "json2html/json2html-1.3.0.tar.gz"
+
+ maintainers("meyersbs")
+
+ version("1.3.0", sha256="8951a53662ae9cfd812685facdba693fc950ffc1c1fd1a8a2d3cf4c34600689c")
+
+ depends_on("py-setuptools", type="build")