28 lines
1.1 KiB
Python
28 lines
1.1 KiB
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PySnakemakeStoragePluginZenodo(PythonPackage):
|
|
"""A Snakemake storage plugin for reading from and writing to zenodo.org."""
|
|
|
|
homepage = "https://github.com/snakemake/snakemake-storage-plugin-zenodo"
|
|
pypi = "snakemake_storage_plugin_zenodo/snakemake_storage_plugin_zenodo-0.1.2.tar.gz"
|
|
|
|
license("MIT")
|
|
|
|
version("0.1.4", sha256="f9c13b4476c8002ec15dcce69819ed65e0cca86595f6ac3ece19020c012c9526")
|
|
version("0.1.3", sha256="ae72ab8f866c72a63912a353923d976a7b5c91658fd9534f670691963be98e53")
|
|
version("0.1.2", sha256="3675e76ae5dc930664bbcc1132a957c6490199c366e4e1e607d1491a7a46cf3d")
|
|
|
|
depends_on("py-requests@2.31:2", type=("build", "run"))
|
|
|
|
depends_on("py-snakemake-interface-common@1.14.4:1", type=("build", "run"))
|
|
depends_on("py-snakemake-interface-storage-plugins@3", type=("build", "run"))
|
|
|
|
depends_on("python@3.11:3", type=("build", "run"))
|
|
depends_on("py-poetry-core", type="build")
|