
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
26 lines
929 B
Python
26 lines
929 B
Python
# 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)
|
|
|
|
from spack import *
|
|
|
|
|
|
class RMixtools(RPackage):
|
|
"""mixtools: Tools for Analyzing Finite Mixture Models
|
|
|
|
Analyzes finite mixture models for various parametric and semiparametric
|
|
settings."""
|
|
|
|
homepage = "https://cran.r-project.org/web/packages/mixtools/index.html"
|
|
url = "https://cran.r-project.org/src/contrib/mixtools_1.1.0.tar.gz"
|
|
list_url = "https://cran.rstudio.com/src/contrib/Archive/mixtools"
|
|
|
|
version('1.1.0', 'c7d59110dd42964d40593a05b98acd5f')
|
|
version('1.0.4', 'c0e6ec44d16ec8914797fb74a651d3e5')
|
|
|
|
depends_on('r@3.4.0:3.4.9')
|
|
depends_on('r-mass', type=('build', 'run'))
|
|
depends_on('r-segmented', type=('build', 'run'))
|
|
depends_on('r-survival', type=('build', 'run'))
|