diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-06-13 14:22:04 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-06-13 15:24:30 +0200 |
commit | 35124d00873e58eb3fbdf0fc07fff807c9f76aa0 (patch) | |
tree | de6a6f4afd9c590d9826c47f8db71f0dd0916f86 | |
parent | 789c7ab5058e90acdb0fb2c19b56df142f5bab12 (diff) | |
download | guix-35124d00873e58eb3fbdf0fc07fff807c9f76aa0.tar.gz guix-35124d00873e58eb3fbdf0fc07fff807c9f76aa0.zip |
gnu: r-quantpsyc: Update to 1.6.
* gnu/packages/statistics.scm (r-quantpsyc): Update to 1.6.
[propagated-inputs]: Add r-dplyr and r-purrr.
-rw-r--r-- | gnu/packages/statistics.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 5254c8b445..8823150222 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -6432,18 +6432,21 @@ popular stats packages like SAS, Stata and SPSS.") (define-public r-quantpsyc (package (name "r-quantpsyc") - (version "1.5") + (version "1.6") (source (origin (method url-fetch) (uri (cran-uri "QuantPsyc" version)) (sha256 (base32 - "1i9bh88r8zxndzjqsj14qw64gnvm5a9kvhjhzk3qsrvl3qzjgh93")))) + "1dbj830p5837fiwa800nzsaf19lf95vc3n7jmds2q9v06mrz6syq")))) (properties `((upstream-name . "QuantPsyc"))) (build-system r-build-system) (propagated-inputs - (list r-boot r-mass)) + (list r-boot + r-dplyr + r-mass + r-purrr)) (home-page "https://cran.r-project.org/web/packages/QuantPsyc/") (synopsis "Quantitative Psychology Tools") (description |