summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ggpubr/package.py
blob: 66f10d03f9606bba7415f71e4bd338ac7174db1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 RGgpubr(RPackage):
    """ggpubr: 'ggplot2' Based Publication Ready Plots"""

    homepage = "http://www.sthda.com/english/rpkgs/ggpubr"
    url      = "https://cran.r-project.org/src/contrib/ggpubr_0.1.2.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/ggpubr"

    version('0.1.2', '42a5749ae44121597ef511a7424429d1')

    depends_on('r@3.1.0:')
    depends_on('r-ggplot2', type=('build', 'run'))
    depends_on('r-ggrepel', type=('build', 'run'))
    depends_on('r-ggsci', type=('build', 'run'))
    depends_on('r-plyr', type=('build', 'run'))