summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-scoop/package.py
blob: 6ab7da99127e6e4b4d171e55835f4d9b5d114b60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2022 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 PyScoop(PythonPackage):
    """SCOOP (Scalable COncurrent Operations in Python) is a distributed
    task module allowing concurrent parallel programming on various
    environments, from heterogeneous grids to supercomputers."""

    homepage = "https://github.com/soravux/scoop"
    pypi = "scoop/scoop-0.7.1.1.tar.gz"

    version("0.7.1.1", sha256="d8b6444c7bac901171e3327a97e241dde63f060354e162a65551fd8083ca62b4")

    depends_on("py-setuptools", type="build")
    depends_on("py-greenlet@0.3.4:", type=("build", "run"))
    depends_on("py-pyzmq@13.1.0:", type=("build", "run"))
    depends_on("py-argparse@1.1:", when="^python@:2.6,3.0:3.1", type=("build", "run"))