27 lines
1015 B
Python
27 lines
1015 B
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 RKs(RPackage):
|
|
"""Kernel smoothers for univariate and multivariate data."""
|
|
|
|
homepage = "https://cran.r-project.org/package=ks"
|
|
url = "https://cran.r-project.org/src/contrib/Archive/ks/ks_1.11.2.tar.gz"
|
|
|
|
version('1.11.2', sha256='9dfd485096e1e67abc7dfcb7b76a83de110dd15bcfeffe5c899605b3a5592961')
|
|
|
|
depends_on('r@2.10:', type=('build', 'run'))
|
|
|
|
depends_on('r-fnn@1.1:', type=('build', 'run'))
|
|
depends_on('r-kernlab', type=('build', 'run'))
|
|
depends_on('r-mclust', type=('build', 'run'))
|
|
depends_on('r-multicool', type=('build', 'run'))
|
|
depends_on('r-mvtnorm@1.0:', type=('build', 'run'))
|
|
depends_on('r-kernsmooth@2.22:', type=('build', 'run'))
|
|
depends_on('r-matrix', type=('build', 'run'))
|
|
depends_on('r-mgcv', type=('build', 'run'))
|