diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:23:24 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:25:21 +0200 |
commit | 322290ba138710802ee286e2a91f5340dcaf01a9 (patch) | |
tree | 94be3dfb6bd3ebbdd7f813567f938d2d2f5ddf0b | |
parent | c7b913a535e8ec9b2834312d6acc1a1bfa799028 (diff) | |
download | guix-322290ba138710802ee286e2a91f5340dcaf01a9.tar.gz |
gnu: Add r-paws-machine-learning.
* gnu/packages/cran.scm (r-paws-machine-learning): New variable.
-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 f892921698..e8ee20397d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -30742,3 +30742,27 @@ more.") services, including Elastic MapReduce Hadoop and Spark big data service, Elasticsearch search engine, and more.") (license license:asl2.0))) + +(define-public r-paws-machine-learning + (package + (name "r-paws-machine-learning") + (version "0.1.12") + (source + (origin + (method url-fetch) + (uri (cran-uri "paws.machine.learning" version)) + (sha256 + (base32 + "01w2y5952pk50xjbzby2pc51xrkrzjpfxbmii1b10cl2xgzfkxsa")))) + (properties + `((upstream-name . "paws.machine.learning"))) + (build-system r-build-system) + (propagated-inputs + `(("r-paws-common" ,r-paws-common))) + (home-page "https://github.com/paws-r/paws") + (synopsis "Amazon Web Services machine learning services") + (description + "This package provides an interface to Amazon Web Services machine +learning services, including SageMaker managed machine learning service, +natural language processing, speech recognition, translation, and more.") + (license license:asl2.0))) |