summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-psij-python/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-psij-python/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-psij-python/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-psij-python/package.py b/var/spack/repos/builtin/packages/py-psij-python/package.py
new file mode 100644
index 0000000000..7fc82ed24a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-psij-python/package.py
@@ -0,0 +1,27 @@
+# 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 PyPsijPython(PythonPackage):
+ """PSI/J is an abstraction layer over cluster schedulers to write scheduler
+ agnostic HPC applications."""
+
+ homepage = "https://www.exaworks.org/"
+ git = "https://github.com/exaworks/psij-python.git"
+ pypi = "psij-python/psij-python-0.1.0.post2.tar.gz"
+
+ maintainers = ["andre-merzky"]
+
+ version(
+ "0.1.0.post2", sha256="78f4fb147248be479aa6128b583dff9052698c49f36c6e9811b4c3f9db326043"
+ )
+
+ depends_on("python@3.7:", type=("build", "run"))
+ depends_on("py-filelock", type=("build", "run"))
+ depends_on("py-psutil", type=("build", "run"))
+ depends_on("py-pystache", type=("build", "run"))
+ depends_on("py-setuptools", type="build")