diff options
-rw-r--r-- | var/spack/repos/builtin/packages/r-biomart/package.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/r-biomart/package.py b/var/spack/repos/builtin/packages/r-biomart/package.py index db5dabcd10..d327e47ee7 100644 --- a/var/spack/repos/builtin/packages/r-biomart/package.py +++ b/var/spack/repos/builtin/packages/r-biomart/package.py @@ -42,9 +42,13 @@ class RBiomart(RPackage): homepage = "https://bioconductor.org/packages/biomaRt/" url = "https://git.bioconductor.org/packages/biomaRt" + version('2.34.2', git='https://git.bioconductor.org/packages/biomaRt', commit='a7030915fbc6120cc6812aefdedba423a207459b') version('2.32.1', git='https://git.bioconductor.org/packages/biomaRt', commit='f84d74424fa599f6d08f8db4612ca09914a9087f') depends_on('r-xml', type=('build', 'run')) depends_on('r-rcurl', type=('build', 'run')) depends_on('r-annotationdbi', type=('build', 'run')) - depends_on('r@3.4.0:3.4.9', when='@2.32.1') + depends_on('r-progress', type=('build', 'run'), when='@2.34.2') + depends_on('r-stringr', type=('build', 'run'), when='@2.34.2') + depends_on('r-httr', type=('build', 'run'), when='@2.34.2') + depends_on('r@3.4.0:3.4.9', when='@2.32.1:') |