summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAmjad Kotobi <amjadkotbi@gmail.com>2020-05-21 17:48:58 +0200
committerGitHub <noreply@github.com>2020-05-21 17:48:58 +0200
commit7d55b88c43aa4b69c6df712e8401dacc0c3ead48 (patch)
tree1c2105f6a0f9cb5df800a6269dff9a52b642f26e /var
parent6445c2e807475e764bbed8eb107a3a64bd6028f8 (diff)
downloadspack-7d55b88c43aa4b69c6df712e8401dacc0c3ead48.tar.gz
spack-7d55b88c43aa4b69c6df712e8401dacc0c3ead48.tar.bz2
spack-7d55b88c43aa4b69c6df712e8401dacc0c3ead48.tar.xz
spack-7d55b88c43aa4b69c6df712e8401dacc0c3ead48.zip
r-caracas: new package at v1.0.0 (#16748)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/r-caracas/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-caracas/package.py b/var/spack/repos/builtin/packages/r-caracas/package.py
new file mode 100644
index 0000000000..74f9c77e54
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-caracas/package.py
@@ -0,0 +1,23 @@
+# 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 RCaracas(RPackage):
+ """Computer algebra via the 'SymPy' library (<https://www.sympy.org/>).
+ This makes it possible to solve equations symbolically, find symbolic
+ integrals, symbolic sums and other important quantities.
+ """
+
+ homepage = "https://cloud.r-project.org/package=caracas"
+ url = "https://cloud.r-project.org/src/contrib/caracas_1.0.0.tar.gz"
+ list_url = "https://cloud.r-project.org/src/contrib/Archive/caracas"
+
+ version('1.0.0', sha256='0da6f1d94d1dacb1c11a3635bdff8f7cd8f84373deffa7126636d0876d48e42b')
+
+ depends_on('r@3.0:', type=('build', 'run'))
+ depends_on('r-reticulate@1.14:', type=('build', 'run'))
+ depends_on('python@3.6:', type=('build', 'run'))