1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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 PySnakemakeExecutorPluginAzureBatch(PythonPackage):
"""A Snakemake executor plugin for submitting jobs to Microsoft Azure Batch."""
homepage = "https://github.com/snakemake/snakemake-executor-plugin-azure-batch"
pypi = (
"snakemake_executor_plugin_azure_batch/snakemake_executor_plugin_azure_batch-0.1.3.tar.gz"
)
license("MIT")
version("0.1.3", sha256="7883ecdc3983eb73ea0e1ae10010eeff1626510c7e99176203ee2050031f86e3")
depends_on("py-snakemake-interface-common@1.15:1", type=("build", "run"))
depends_on("py-snakemake-interface-executor-plugins@8.1.1:8", type=("build", "run"))
depends_on("py-azure-storage-blob@12.17:12", type=("build", "run"))
depends_on("py-azure-batch@14", type=("build", "run"))
depends_on("py-azure-mgmt-batch@17", type=("build", "run"))
depends_on("py-azure-identity@1.14:1", type=("build", "run"))
depends_on("py-msrest@0.7.1:0.7", type=("build", "run"))
depends_on("python@3.11:3", type=("build", "run"))
depends_on("py-poetry-core", type="build")
|