diff options
-rw-r--r-- | gn/packages/statistics.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gn/packages/statistics.scm b/gn/packages/statistics.scm index e337686..5b4d649 100644 --- a/gn/packages/statistics.scm +++ b/gn/packages/statistics.scm @@ -224,3 +224,14 @@ interaction networks.") (synopsis "Python interface to the R language (embedded R)") (description "Python interface to the R language (embedded R).") (license #f))) + + +(define-public python-rpy2-patched + ;; TODO: Delete this after python-rpy2 is fixed upstream. + (package + (inherit python-rpy2) + (propagated-inputs + (modify-inputs (package-propagated-inputs python-rpy2) + (prepend r-minimal) + (prepend python-rpy2-rinterface) + (prepend python-rpy2-robjects))))) |