diff options
Diffstat (limited to 'gn/packages/statistics.scm')
-rw-r--r-- | gn/packages/statistics.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gn/packages/statistics.scm b/gn/packages/statistics.scm index fab71c7..e337686 100644 --- a/gn/packages/statistics.scm +++ b/gn/packages/statistics.scm @@ -24,6 +24,8 @@ #:use-module (gnu packages check); python-rpy2-rinterface #:use-module (gnu packages compression); python-rpy2-rinterface #:use-module (gnu packages icu4c); python-rpy2-rinterface + #:use-module (gnu packages time); python-rpy2-robjects + ) (define-public r-hmisc-3 (package @@ -191,3 +193,34 @@ interaction networks.") (description "Low-level interface for rpy2. rpy2 is an interface to R running embedded in a Python process.") (license license:gpl2))) + + +(define-public python-rpy2-robjects + (package + (name "python-rpy2-robjects") + (version "3.6.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "rpy2_robjects" version)) + (sha256 + (base32 "0yn4nq26na9hzlm08vsxr050ls5nmngpyma49fpfwc9mhxc7njlk")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-jinja2 + python-packaging + python-rpy2-rinterface + ;;python-backports-zoneinfo; needed for python_version<3.9 + python-tzlocal)) + (native-inputs (list python-coverage + python-ipython + python-numpy + python-packaging + python-pandas + python-pytest + python-pytest-cov + python-setuptools + python-wheel)) + (home-page #f) + (synopsis "Python interface to the R language (embedded R)") + (description "Python interface to the R language (embedded R).") + (license #f))) |