diff --git a/var/spack/repos/builtin/packages/r-xnomial/package.py b/var/spack/repos/builtin/packages/r-xnomial/package.py new file mode 100644 index 0000000000..b18ed10db3 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-xnomial/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2018 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) +# See the Spack documentation for more information on packaging. + +from spack import * + + +class RXnomial(RPackage): + """XNomial: Exact Goodness-of-Fit Test for Multinomial Data with Fixed + Probabilities""" + + homepage = "https://cran.r-project.org/package=XNomial" + url = "https://cran.r-project.org/src/contrib/XNomial_1.0.4.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/XNomial/" + + version('1.0.4', sha256='e6237f79d96f02bb30af1cf055ae9f70541abba34ce045a9d4359b5304189dd7') + + depends_on('r@2.14:', type=('build', 'run')) + depends_on('r-knitr', type=('build', 'run'))