summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rpart-plot/package.py
blob: b531df7e3d5dda51e38032d88a63a0e1d6c24fa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 RRpartPlot(RPackage):
    """Plot 'rpart' models. Extends plot.rpart() and text.rpart() in the
    'rpart' package."""

    homepage = "https://cran.r-project.org/package=rpart.plot"
    url      = "https://cran.r-project.org/src/contrib/rpart.plot_2.1.0.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/rpart.plot"

    version('2.1.0', 'fb0f8edfe22c464683ee82aa429136f9')

    depends_on('r-rpart@4.1-0:', type=('build', 'run'))