diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-15 02:00:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 09:00:27 +0100 |
commit | 71615632defe37681d1257912ea03f6e1cdeffde (patch) | |
tree | b9f210d81153bf723eef2d10566d75d13a32e974 | |
parent | 0f40d8b59f8b196050bbdde4cc2c9d4b28840bd4 (diff) | |
download | spack-71615632defe37681d1257912ea03f6e1cdeffde.tar.gz spack-71615632defe37681d1257912ea03f6e1cdeffde.tar.bz2 spack-71615632defe37681d1257912ea03f6e1cdeffde.tar.xz spack-71615632defe37681d1257912ea03f6e1cdeffde.zip |
r-fitdistrplus: add v1.1-3 (#20923)
-rw-r--r-- | var/spack/repos/builtin/packages/r-fitdistrplus/package.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/r-fitdistrplus/package.py b/var/spack/repos/builtin/packages/r-fitdistrplus/package.py index 272d019b6c..935c3784af 100644 --- a/var/spack/repos/builtin/packages/r-fitdistrplus/package.py +++ b/var/spack/repos/builtin/packages/r-fitdistrplus/package.py @@ -7,7 +7,9 @@ from spack import * class RFitdistrplus(RPackage): - """Extends the fitdistr() function (of the MASS package) with several + """Help to Fit of a Parametric Distribution to Non-Censored or Censored Data + + Extends the fitdistr() function (of the MASS package) with several functions to help the fit of a parametric distribution to non-censored or censored data. Censored data may contain left censored, right censored and interval censored values, with several lower and upper bounds. In addition @@ -21,9 +23,10 @@ class RFitdistrplus(RPackage): url = "https://cloud.r-project.org/src/contrib/fitdistrplus_1.0-14.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/fitdistrplus" + version('1.1-3', sha256='776d5456e14398e44b78b3d7db526559bb7a3537e546a29c88aa192141c756de') version('1.0-14', sha256='85082590f62aa08d99048ea3414c5cc1e5b780d97b3779d2397c6cb435470083') depends_on('r@3.2.0:', type=('build', 'run')) depends_on('r-mass', type=('build', 'run')) depends_on('r-survival', type=('build', 'run')) - depends_on('r-npsurv', type=('build', 'run')) + depends_on('r-npsurv', when='@:1.0-14', type=('build', 'run')) |