summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-circstats/package.py
blob: 3f0b11e9dbbe7a3e4d222d4511da53bf2722c993 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2013-2023 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.package import *


class RCircstats(RPackage):
    """Circular Statistics, from "Topics in Circular Statistics" (2001).

    Circular Statistics, from "Topics in Circular Statistics" (2001) S.  Rao
    Jammalamadaka and A. SenGupta, World Scientific."""

    cran = "CircStats"

    maintainers("dorton21")

    license("GPL-2.0-only")

    version("0.2-6", sha256="8efed93b75b314577341effea214e3dd6e0a515cfe1212eb051047a1f3276f1d")

    depends_on("r-mass", type=("build", "run"))
    depends_on("r-boot", type=("build", "run"))