summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorBenjamin Meyers <meyersbs@users.noreply.github.com>2023-03-09 04:50:31 -0500
committerGitHub <noreply@github.com>2023-03-09 04:50:31 -0500
commit15433cfaf14a2625ca14e0e4db75a350096f1ac1 (patch)
treed2c8fb12982d0a25a5fdb7ef610923c88c13226b /var
parent99aa0ef0cdb2adb20eb19c83fa8c2d6848851375 (diff)
downloadspack-15433cfaf14a2625ca14e0e4db75a350096f1ac1.tar.gz
spack-15433cfaf14a2625ca14e0e4db75a350096f1ac1.tar.bz2
spack-15433cfaf14a2625ca14e0e4db75a350096f1ac1.tar.xz
spack-15433cfaf14a2625ca14e0e4db75a350096f1ac1.zip
New package py-custodian (#35938)
* New package py-custodian * [@spackbot] updating style on behalf of meyersbs
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-custodian/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-custodian/package.py b/var/spack/repos/builtin/packages/py-custodian/package.py
new file mode 100644
index 0000000000..5b6d6dd6c0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-custodian/package.py
@@ -0,0 +1,27 @@
+# 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 PyCustodian(PythonPackage):
+ """Custodian is a simple, robust and flexible just-in-time (JIT) job management
+ framework written in Python. Using custodian, you can create wrappers that
+ perform error checking, job management and error recovery. It has a simple
+ plugin framework that allows you to develop specific job management workflows
+ for different applications."""
+
+ homepage = "https://github.com/materialsproject/custodian"
+ pypi = "custodian/custodian-2022.5.26.tar.gz"
+
+ maintainers("meyersbs")
+
+ version("2022.5.26", sha256="92bdafa578c75f976176492e7bf3eb83abde97f112725e2e421633fa8954c6ef")
+
+ # From setup.py:
+ depends_on("py-setuptools", type="build")
+ depends_on("py-monty@2.0.6:", type=("build", "run"))
+ depends_on("py-ruamel-yaml@0.15.6:", type=("build", "run"))
+ depends_on("py-sentry-sdk@0.8.0:", type=("build", "run"))