mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add r-assertive-types.
* gnu/packages/cran.scm (r-assertive-types): New variable.
This commit is contained in:
parent
dcafcfb4fd
commit
5e3bd35506
1 changed files with 26 additions and 0 deletions
|
@ -9655,3 +9655,29 @@ (define-public r-assertive-reflection
|
|||
the IDE being used. 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-types
|
||||
(package
|
||||
(name "r-assertive-types")
|
||||
(version "0.0-3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "assertive.types" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
|
||||
(properties
|
||||
`((upstream-name . "assertive.types")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-assertive-base" ,r-assertive-base)
|
||||
("r-assertive-properties" ,r-assertive-properties)
|
||||
("r-codetools" ,r-codetools)))
|
||||
(home-page "https://bitbucket.org/richierocks/assertive.types")
|
||||
(synopsis "Assertions to check types of variables")
|
||||
(description
|
||||
"This package provides a set of predicates and assertions for checking
|
||||
the types of variables. This is mainly for use by other package developers
|
||||
who want to include run-time testing features in their own packages.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue