summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Cotte <adrien@cotte.com>2024-03-27 17:35:17 +0100
committerGitHub <noreply@github.com>2024-03-27 09:35:17 -0700
commit579bad05a8e6f5d6d8ce474ecc35f5507fef8ecf (patch)
treedc709a45432310c098a19b733dd89add6432720d
parent27a8eb0f68d6446b60623cbe05554103aacbe138 (diff)
downloadspack-579bad05a8e6f5d6d8ce474ecc35f5507fef8ecf.tar.gz
spack-579bad05a8e6f5d6d8ce474ecc35f5507fef8ecf.tar.bz2
spack-579bad05a8e6f5d6d8ce474ecc35f5507fef8ecf.tar.xz
spack-579bad05a8e6f5d6d8ce474ecc35f5507fef8ecf.zip
Add py-modules-gui (mogui) (#43396)
-rw-r--r--var/spack/repos/builtin/packages/py-modules-gui/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-modules-gui/package.py b/var/spack/repos/builtin/packages/py-modules-gui/package.py
new file mode 100644
index 0000000000..f241e27d63
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-modules-gui/package.py
@@ -0,0 +1,25 @@
+# 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 PyModulesGui(PythonPackage):
+ """MoGui is a Graphical User Interface (GUI) for Environment Modules.
+ It helps users selecting modules to load and save module collections."""
+
+ homepage = "https://github.com/cea-hpc/mogui"
+ pypi = "modules-gui/modules-gui-0.2.tar.gz"
+
+ maintainers("adrien-cotte")
+
+ license("GPL-2.0")
+
+ version("0.2", sha256="d58a3943f4631756afa4f84c13b70fae67a72365ab3cad28014f972b8d023aec")
+
+ depends_on("py-setuptools@61:", type=("build"))
+ depends_on("py-setuptools-scm", type=("build"))
+ depends_on("py-pyqt5", type=("run"))
+ depends_on("environment-modules@5.2:", type=("run"))