diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:23:01 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:25:21 +0200 |
commit | a30b1ff44478b11785afb146e12b9f8aaca48f43 (patch) | |
tree | aa938a39e40cd7125b23cdcbd3204e0147299a3e /gnu/packages | |
parent | e1f7b3e8f9023e6e9e6e9534d28e3d8db018834b (diff) |
gnu: Add r-paws-cost-management.
* gnu/packages/cran.scm (r-paws-cost-management): New variable.
Diffstat (limited to 'gnu/packages')
-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 67c36c9e93..b1a0547241 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -30645,3 +30645,27 @@ Service (S3).") engagement services, including Simple Email Service, Connect contact center service, and more.") (license license:asl2.0))) + +(define-public r-paws-cost-management + (package + (name "r-paws-cost-management") + (version "0.1.12") + (source + (origin + (method url-fetch) + (uri (cran-uri "paws.cost.management" version)) + (sha256 + (base32 + "0in4f8ygw5g2v6vl3lz2y0v51llglh8b1ymbd04d54xxlgn83knh")))) + (properties + `((upstream-name . "paws.cost.management"))) + (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 cost management services") + (description + "This package provides an interface to Amazon Web Services cost +management services, including cost and usage reports, budgets, pricing, and +more.") + (license license:asl2.0))) |