File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
var/spack/repos/builtin/packages/py-disbatch Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ # Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
2+ # Spack Project Developers. See the top-level COPYRIGHT file for details.
3+ #
4+ # SPDX-License-Identifier: (Apache-2.0 OR MIT)
5+
6+ from spack .package import *
7+
8+
9+ class PyDisbatch (PythonPackage ):
10+ """Dynamically distribute a list of tasks over a pool of compute resources."""
11+
12+ homepage = "https://github.com/flatironinstitute/disBatch"
13+ pypi = "disbatch/disbatch-3.0.tar.gz"
14+
15+ maintainers ("lgarrison" )
16+
17+ license ("Apache-2.0" , checked_by = "lgarrison" )
18+
19+ version ("3.0" , sha256 = "c7396319bfadfcc11dca578386725373e16acb653c76042d1ceb304255efa5ef" )
20+
21+ depends_on (
"[email protected] :" ,
type = (
"build" ,
"run" ))
22+
23+ depends_on ("py-hatchling" , type = "build" )
24+ depends_on ("py-hatch-vcs" , type = "build" )
You can’t perform that action at this time.
0 commit comments