diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2018-07-04 17:42:46 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-07-05 15:08:44 +0200 |
commit | 3629622bc8b77f240ec62a982e453dc8885890b2 (patch) | |
tree | 7b7af36a894ca357821c86c02051e78099614791 /gnu | |
parent | aec7d6be709d7237824af8eb0855e0bb5e89c3cc (diff) | |
download | guix-3629622bc8b77f240ec62a982e453dc8885890b2.tar guix-3629622bc8b77f240ec62a982e453dc8885890b2.tar.gz |
gnu: Add r-findpython.
* gnu/packages/cran.scm (r-findpython): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3ef45a21c9..9f4c640753 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4600,3 +4600,22 @@ use the packages @code{optparse} or @code{argparse} which add extra features like automatically generated help options and usage texts, support for default values, positional argument support, etc.") (license license:gpl2+))) + +(define-public r-findpython + (package + (name "r-findpython") + (version "1.0.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "findpython" version)) + (sha256 + (base32 + "1y08jk2ffmkf9zpwiz2xymjhfwqvls9vzsnq62v278ghw9d571jl")))) + (build-system r-build-system) + (home-page "https://github.com/trevorld/findpython") + (synopsis "Functions to find an acceptable Python binary") + (description + "This package was designed to find an acceptable Python binary that +matches version and feature constraints.") + (license license:expat))) |