summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Meyers <meyersbs@users.noreply.github.com>2022-11-28 16:45:40 -0500
committerGitHub <noreply@github.com>2022-11-28 15:45:40 -0600
commita0180ef7418275535c474fc81e98331274bf497b (patch)
treef207ac88e41c7461432bf7355d953bc18e2735fc
parentd640a573a84f47bb8e69b714123159e148a24804 (diff)
downloadspack-a0180ef7418275535c474fc81e98331274bf497b.tar.gz
spack-a0180ef7418275535c474fc81e98331274bf497b.tar.bz2
spack-a0180ef7418275535c474fc81e98331274bf497b.tar.xz
spack-a0180ef7418275535c474fc81e98331274bf497b.zip
New package: py-stui (#34156)
* New package py-stui * [py-stui] add maintainer * [@spackbot] updating style on behalf of meyersbs * [py-stui] fix deps
-rw-r--r--var/spack/repos/builtin/packages/py-stui/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-stui/package.py b/var/spack/repos/builtin/packages/py-stui/package.py
new file mode 100644
index 0000000000..374c91f69f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-stui/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2022 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 PyStui(PythonPackage):
+ """A Slurm dashboard for the terminal."""
+
+ homepage = "https://github.com/mi-lad/stui"
+ pypi = "stui/stui-0.3.6.tar.gz"
+
+ maintainers = ["meyersbs"]
+
+ version("0.3.6", sha256="b7f4f9ff537977af0d37a3218217f2b882a30709fcd2773a07df09050c700102")
+
+ depends_on("python@3.6:", type=("build", "run"))
+ depends_on("py-setuptools", type="build")
+ depends_on("py-urwid", type=("build", "run"))
+ depends_on("py-fabric@2.5.0:", type=("build", "run"))