summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-reticulate/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-reticulate/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-reticulate/package.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/r-reticulate/package.py b/var/spack/repos/builtin/packages/r-reticulate/package.py
index 3a59ac8437..3367073a83 100644
--- a/var/spack/repos/builtin/packages/r-reticulate/package.py
+++ b/var/spack/repos/builtin/packages/r-reticulate/package.py
@@ -7,7 +7,7 @@ from spack import *
class RReticulate(RPackage):
- """Interface to 'Python'
+ """Interface to 'Python'.
Interface to 'Python' modules, classes, and functions. When calling into
'Python', R data types are automatically converted to their equivalent
@@ -15,17 +15,21 @@ class RReticulate(RPackage):
converted back to R types. Compatible with all versions of 'Python' >=
2.7."""
- homepage = "https://github.com/rstudio/reticulate"
- url = "https://cloud.r-project.org/src/contrib/reticulate_1.13.tar.gz"
- list_url = "https://cloud.r-project.org/src/contrib/Archive/reticulate"
+ cran = "reticulate"
+ version('1.24', sha256='b918c5204916601f757ad0fc629b2ae1eabab7cdf7f6aa2e219d26e506d916cc')
+ version('1.23', sha256='fea04a3ff33c71f1910d65000a93c6882180ca03f8657ee118ea9e79786c36d6')
version('1.18', sha256='b33f855a58f446eefbe38df8a1a4865390f5d4ebd64b2c72266baaee64628513')
version('1.15', sha256='47db3e9c9424263ade15287da8e74f6ba261a936b644b197dba6772853b7b50d')
version('1.13', sha256='adbe41d556b667c4419d563680f8608a56b0f792b8bc427b3bf4c584ff819de3')
depends_on('r@3.0:', type=('build', 'run'))
- depends_on('r-jsonlite', type=('build', 'run'))
depends_on('r-matrix', type=('build', 'run'))
- depends_on('r-rappdirs', when='@1.15:', type=('build', 'run'))
depends_on('r-rcpp@0.12.7:', type=('build', 'run', 'link'))
+ depends_on('r-rcpptoml', type=('build', 'run', 'link'), when='@1.23:')
+ depends_on('r-here', type=('build', 'run', 'link'), when='@1.23:')
+ depends_on('r-jsonlite', type=('build', 'run'))
+ depends_on('r-png', type=('build', 'run', 'link'), when='@1.23:')
+ depends_on('r-rappdirs', type=('build', 'run'), when='@1.15:')
+ depends_on('r-withr', type=('build', 'run', 'link'), when='@1.23:')
depends_on('python@2.7.0:', type=('build', 'run'))