summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-shinyfiles/package.py
blob: 70b4864f4068c53aab7f7dd2ddde69b7af2cb092 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 RShinyfiles(RPackage):
    """Provides functionality for client-side navigation of the server side
    file system in shiny apps. In case the app is running locally this gives
    the user direct access to the file system without the need to "download"
    files to a temporary location. Both file and folder selection as well as
    file saving is available."""

    homepage = "https://github.com/thomasp85/shinyFiles"
    url      = "https://cloud.r-project.org/src/contrib/shinyFiles_0.7.3.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/shinyFiles"

    version('0.7.3', sha256='710c8a6191aaf336379bc748daff1160d0d2858e2aee0d98e2ad48e7121d5a05')

    depends_on('r-htmltools', type=('build', 'run'))
    depends_on('r-jsonlite', type=('build', 'run'))
    depends_on('r-shiny@1.1.0:', type=('build', 'run'))
    depends_on('r-fs@1.2.6:', type=('build', 'run'))
    depends_on('r-tibble@1.4.2:', type=('build', 'run'))