2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-03-10 07:28:32 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-03-10 07:28:32 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyPathos(PythonPackage):
|
|
|
|
"""Parallel graph management and execution in heterogeneous computing """
|
|
|
|
|
|
|
|
homepage = "https://github.com/uqfoundation/pathos"
|
|
|
|
url = "https://pypi.io/packages/source/p/pathos/pathos-0.2.0.zip"
|
|
|
|
|
|
|
|
version('0.2.0', '7a840ce6c3a67d71e6ad7339034ec53e')
|
|
|
|
|
|
|
|
depends_on('python@2.6:2.8,3.1:')
|
|
|
|
|
|
|
|
depends_on('py-setuptools@0.6:', type='build')
|
|
|
|
depends_on('py-multiprocess@0.70.4:', type=('build', 'run'))
|
|
|
|
depends_on('py-pox@0.2.2:', type=('build', 'run'))
|
|
|
|
depends_on('py-ppft@1.6.4.5:', type=('build', 'run'))
|
|
|
|
depends_on('py-dill@0.2.5:', type=('build', 'run'))
|