
* snakemake: add Snakemake 8 with dependencies * snakemake: add missing description * Whitespace * Whitespace * Whitespace * Whitespace * py-conda-inject: add constraint for Python Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-snakemake-executor-plugin-azure-batch: add constraint for Python Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-snakemake-executor-plugin-cluster-generic: add constraint for Python Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-snakemake: add upper bound for Python * py-snakemake-executor-plugin-drmaa: specify dependency type Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-snakemake-executor-plugin-googlebatch: correct dependency version Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-snakemake-executor-plugin-tes: correct dependency version Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-snakemake-storage-plugin-s3: reorder * snakemake: remove newly added variants * snakemake: remove newly added variants * snakemake: remove newly added variant * snakemake: update version * snakemake: update version * snakemake: whitespace * py-snakemake-storage-plugin-s3: update version * snakemake: use newer version * snakemake: whitespace * snakemake: update interfaces * py-snakemake-storage-plugin-gcs: link issue * snakemake: update versions --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
# 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 PySnakemakeStoragePluginFs(PythonPackage):
|
|
"""A Snakemake storage plugin that reads and writes from a locally mounted filesystem
|
|
using rsync."""
|
|
|
|
homepage = "https://github.com/snakemake/snakemake-storage-plugin-fs"
|
|
pypi = "snakemake_storage_plugin_fs/snakemake_storage_plugin_fs-0.1.5.tar.gz"
|
|
|
|
license("MIT")
|
|
|
|
version("0.2.0", sha256="cad1859036cbf429ea6fdb97f242567ec54a36d0b6ff900ce0d3ecfb6a824ae7")
|
|
|
|
depends_on("py-sysrsync@1.1.1:1", type=("build", "run"))
|
|
depends_on("py-reretry@0.11.8:0.11", type=("build", "run"))
|
|
|
|
depends_on("py-snakemake-interface-common@1.17:1", type=("build", "run"))
|
|
depends_on("py-snakemake-interface-storage-plugins@3.1:3", type=("build", "run"))
|
|
|
|
depends_on("python@3.11:3", type=("build", "run"))
|
|
depends_on("py-poetry-core", type="build")
|