summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ggplotify/package.py
blob: cf77a6ac52d17f84bd4b1f03c1c814e8098ba83f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2021 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 RGgplotify(RPackage):
    """ggplotify: Convert Plot to 'grob' or 'ggplot' Object"""

    homepage = "https://github.com/GuangchuangYu/ggplotify"
    url      = "https://cloud.r-project.org/src/contrib/ggplotify_0.0.3.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/ggplotify"

    version('0.0.3', sha256='7e7953a2933aa7127a0bac54375e3e0219a0744cfc3249c3d7b76065f7a51892')

    depends_on('r@3.4.0:', type=('build', 'run'))
    depends_on('r-ggplot2', type=('build', 'run'))
    depends_on('r-gridgraphics', type=('build', 'run'))
    depends_on('r-rvcheck', type=('build', 'run'))