diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-09 15:29:37 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-09 15:43:50 +0100 |
commit | 4b2d17edaa0e296f197bc43adacefa2447d1e513 (patch) | |
tree | d892e5039f728c1ab340029a766d82ba155723a4 /gnu/packages | |
parent | 8004bb2451d33d046dfa5db3894746deaf55a285 (diff) | |
download | patches-4b2d17edaa0e296f197bc43adacefa2447d1e513.tar patches-4b2d17edaa0e296f197bc43adacefa2447d1e513.tar.gz |
gnu: Add r-assertive-properties.
* gnu/packages/cran.scm (r-assertive-properties): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c449301abd..28835bafd8 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -9508,3 +9508,28 @@ Precision Floating-Point Reliable} (MPFR) library.") the assertive package. 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-properties + (package + (name "r-assertive-properties") + (version "0.0-4") + (source + (origin + (method url-fetch) + (uri (cran-uri "assertive.properties" version)) + (sha256 + (base32 + "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw")))) + (properties + `((upstream-name . "assertive.properties"))) + (build-system r-build-system) + (propagated-inputs + `(("r-assertive-base" ,r-assertive-base))) + (home-page "https://bitbucket.org/richierocks/assertive.properties") + (synopsis "Assertions to check properties of variables") + (description + "This package provides a set of predicates and assertions for checking +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+))) |