diff options
author | Amjad Kotobi <amjadkotbi@gmail.com> | 2020-05-18 18:51:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 11:51:26 -0500 |
commit | 864d4a223264cd9d070b4b2a05a305f847158152 (patch) | |
tree | 06d225493d657f28a85455587953564c05bb8504 | |
parent | 0b37188e4f46f9579da357856502b199c88744d9 (diff) | |
download | spack-864d4a223264cd9d070b4b2a05a305f847158152.tar.gz spack-864d4a223264cd9d070b4b2a05a305f847158152.tar.bz2 spack-864d4a223264cd9d070b4b2a05a305f847158152.tar.xz spack-864d4a223264cd9d070b4b2a05a305f847158152.zip |
r-goftest: New package (#16699)
-rw-r--r-- | var/spack/repos/builtin/packages/r-goftest/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-goftest/package.py b/var/spack/repos/builtin/packages/r-goftest/package.py new file mode 100644 index 0000000000..feaa0724b3 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-goftest/package.py @@ -0,0 +1,20 @@ +# 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 RGoftest(RPackage): + """Cramer-Von Mises and Anderson-Darling tests of goodness-of-fit for + continuous univariate distributions, using efficient algorithms. + """ + + homepage = "https://cloud.r-project.org/package=goftest" + url = "https://cloud.r-project.org/src/contrib/goftest_1.2-2.tar.gz" + list_url = "https://cloud.r-project.org/src/contrib/Archive/goftest" + + version('1.2-2', sha256='e497992666b002b6c6bed73bf05047ad7aa69eb58898da0ad8f1f5b2219e7647') + + depends_on('r@3.3:', type=('build', 'run')) |