diff options
author | Frederick Muriuki Muriithi | 2025-08-06 13:40:33 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-08-11 11:04:45 -0500 |
commit | 7531adf3b8584da11f5ee056259931a1a8be5ff3 (patch) | |
tree | acca9984d8367ed0b36c22618edc35933f85bce4 | |
parent | 03bcc79f6c524b4b62913e861b598985fe7ca84a (diff) | |
download | guix-bioinformatics-7531adf3b8584da11f5ee056259931a1a8be5ff3.tar.gz |
Fix python-rpy2 propagated inputs.
-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))))) |