diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2018-07-02 13:25:24 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-07-03 17:58:55 +0200 |
commit | 3568b8234a64b0c34c9166ae2fddb6592b78002a (patch) | |
tree | 6b2809b04c031a3cbffd2f7ed0da0280f43bca16 | |
parent | a51cf16031c974ffa238e5dd9ced32f0d68c9227 (diff) | |
download | guix-3568b8234a64b0c34c9166ae2fddb6592b78002a.tar guix-3568b8234a64b0c34c9166ae2fddb6592b78002a.tar.gz |
gnu: Add r-itertools.
* gnu/packages/cran.scm (r-itertools): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index eeaeefd81f..fb2d9f1e08 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4482,6 +4482,28 @@ functionality is added so that HDF5 objects behave very similar to their corresponding R counterparts.") (license license:asl2.0))) +(define-public r-itertools + (package + (name "r-itertools") + (version "0.1-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "itertools" version)) + (sha256 + (base32 + "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn")))) + (build-system r-build-system) + (propagated-inputs + `(("r-iterators" ,r-iterators))) + (home-page "https://cran.r-project.org/web/packages/itertools/") + (synopsis "Iterator tools") + (description + "This package provides various tools for creating iterators, many +patterned after functions in the Python @code{itertools} module, and others +patterned after functions in the snow package.") + (license license:gpl2))) + (define-public r-writexl (package (name "r-writexl") |