summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rcppcnpy/package.py
blob: ace5876f4866c6acf40dc04b396358e6117b7317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2018 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 RRcppcnpy(RPackage):
    """Rcpp bindings for NumPy files."""

    homepage = "https://github.com/eddelbuettel/rcppcnpy"
    url      = "https://cran.r-project.org/src/contrib/RcppCNPy_0.2.9.tar.gz"
    list_url = "https://cran.rstudio.com/src/contrib/Archive/RcppCNPy"

    version('0.2.9', '7f63354d15928b6716830c2975b3baf0')

    depends_on('r@3.1.0:', type=('build', 'run'))
    depends_on('cnpy')
    depends_on('r-rcpp', type=('build', 'run'))