diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-03-09 21:31:03 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-03-09 22:05:24 +0100 |
commit | 91aa72bfe2b72c3fd3142caa879ad00510b13c19 (patch) | |
tree | 17dad28c3ae055d4b6d7eddc7e786aece0c4937f /gnu/packages/cran.scm | |
parent | bcdf0cf3a59287db5716359998fd124dcc1d83c2 (diff) |
gnu: Add r-palmerpenguins.
* gnu/packages/cran.scm (r-palmerpenguins): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e00b611a83..a5c8de4d64 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2546,6 +2546,30 @@ inspired by Python's Literal String Interpolation (PEP-0498) and Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.") (license license:expat))) +(define-public r-palmerpenguins + (package + (name "r-palmerpenguins") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "palmerpenguins" version)) + (sha256 + (base32 + "0q1k3cdkliq7kwrg1n0vs9b6cjwyfarhlgdijhp9c6riy6y5ik7x")))) + (properties + `((upstream-name . "palmerpenguins"))) + (build-system r-build-system) + (home-page "https://allisonhorst.github.io/palmerpenguins/") + (synopsis "Palmer Archipelago (Antarctica) penguin data") + (description + "This package includes size measurements, clutch observations, and blood +isotope ratios for adult foraging Adélie, Chinstrap, and Gentoo penguins +observed on islands in the Palmer Archipelago near Palmer Station, Antarctica. +Data were collected and made available by Dr. Kristen Gorman and the Palmer +Station Long Term Ecological Research (LTER) Program.") + (license license:cc0))) + (define-public r-pastecs (package (name "r-pastecs") |