42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
# Copyright 2013-2019 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 import *
|
|
|
|
|
|
class PyRpy2(PythonPackage):
|
|
"""rpy2 is a redesign and rewrite of rpy. It is providing a low-level
|
|
interface to R from Python, a proposed high-level interface,
|
|
including wrappers to graphical libraries, as well as R-like
|
|
structures and functions.
|
|
|
|
"""
|
|
homepage = "https://pypi.python.org/pypi/rpy2"
|
|
url = "https://pypi.io/packages/source/r/rpy2/rpy2-2.5.4.tar.gz"
|
|
|
|
version('3.0.0', '4ea39c4ff42f5bc611e338ff66d18c9f')
|
|
version('2.9.4', '7df2562cdf43a0ccdd1e44ee1c16614f')
|
|
version('2.8.6', '85046aa58ba586622f67271fbca05933')
|
|
version('2.5.6', 'a36e758b633ce6aec6a5f450bfee980f')
|
|
version('2.5.4', '115a20ac30883f096da2bdfcab55196d')
|
|
|
|
# FIXME: Missing dependencies:
|
|
# ld: cannot find -licuuc
|
|
# ld: cannot find -licui18
|
|
|
|
# All versions
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('r', type=('build', 'run'))
|
|
|
|
# @2.9.0:
|
|
depends_on('r@3.3:', when='@2.9.0:', type=('build', 'run'))
|
|
depends_on('python@3:', when='@2.9.0:', type=('build', 'run'))
|
|
depends_on('py-jinja2', when='@2.9.0:', type=('build', 'run'))
|
|
depends_on('py-six', when='@2.9.0:', type=('build', 'run'))
|
|
|
|
# @:2.8.6
|
|
depends_on('r@2.8:', when='@:2.8.6', type=('build', 'run'))
|
|
depends_on('py-singledispatch', when='^python@:2', type=('build', 'run'))
|