diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-09 15:30:20 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-09 15:43:50 +0100 |
commit | dac9c1f6048237ecc0eeaa959b3c7429adb2518a (patch) | |
tree | d8878a1bb248f8497d7740d6e1678a4d46454d4f /gnu | |
parent | 4b2d17edaa0e296f197bc43adacefa2447d1e513 (diff) | |
download | patches-dac9c1f6048237ecc0eeaa959b3c7429adb2518a.tar patches-dac9c1f6048237ecc0eeaa959b3c7429adb2518a.tar.gz |
gnu: Add r-assertive-numbers.
* gnu/packages/cran.scm (r-assertive-numbers): New variable.
Diffstat (limited to 'gnu')
-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 28835bafd8..270e402d40 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -9533,3 +9533,27 @@ the properties of variables, such as length, names and attributes. This is mainly for use by other package developers who want to include run-time testing features in their own packages.") (license license:gpl3+))) + +(define-public r-assertive-numbers + (package + (name "r-assertive-numbers") + (version "0.0-2") + (source + (origin + (method url-fetch) + (uri (cran-uri "assertive.numbers" version)) + (sha256 + (base32 + "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds")))) + (properties + `((upstream-name . "assertive.numbers"))) + (build-system r-build-system) + (propagated-inputs + `(("r-assertive-base" ,r-assertive-base))) + (home-page "https://bitbucket.org/richierocks/assertive.numbers") + (synopsis "Assertions to check properties of numbers") + (description + "This package provides a set of predicates and assertions for checking +the properties of numbers. This is mainly for use by other package developers +who want to include run-time testing features in their own packages.") + (license license:gpl3+))) |