py-disbatch: add new package at version 3.0 (#47988)

This commit is contained in:
Lehman Garrison 2024-12-10 13:13:56 -05:00 committed by GitHub
parent 7e5b5f8c57
commit 7bb6c9b828
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,24 @@
# 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 PyDisbatch(PythonPackage):
"""Dynamically distribute a list of tasks over a pool of compute resources."""
homepage = "https://github.com/flatironinstitute/disBatch"
pypi = "disbatch/disbatch-3.0.tar.gz"
maintainers("lgarrison")
license("Apache-2.0", checked_by="lgarrison")
version("3.0", sha256="c7396319bfadfcc11dca578386725373e16acb653c76042d1ceb304255efa5ef")
depends_on("python@3.9:", type=("build", "run"))
depends_on("py-hatchling", type="build")
depends_on("py-hatch-vcs", type="build")