diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-10 22:13:01 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:37:03 +0100 |
| commit | bd882e3e1009eded80c616fab95091d1f5035851 (patch) | |
| tree | eacb1c7b9bd60f3c479122017b853ac166f1500c | |
| parent | 951560e4f138bd59051f67b5268e5204e9e9d1cf (diff) | |
gnu: python-rpy2: Update to 3.6.7.
* gnu/packages/statistics.scm (python-rpy2): Update to 3.6.7.
[arguments] <tests?>: Disable, the Python module was split into one meta
package with two subpackages, the former has no tests.
[inputs]: Remove icu4c, libdeflate, pcre, python-numpy, readline,
r-minimal, r-survival, r-ggplot2, r-rsqlite, r-dplyr, r-dbplyr, and
zlib.
[propagated-inputs]: Remove python-cffi, python-jinja2, python-numpy,
python-pandas, python-pytz, python-ipython, and python-tzlocal; add
python-rpy2-rinterface and python-rpy2-robjects.
[native-inputs]: Remove python-pytest-8.
Change-Id: I0002688e5b79c98d26b747b744b89101af4ccc65
| -rw-r--r-- | gnu/packages/statistics.scm | 41 |
1 files changed, 9 insertions, 32 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 4db8f3ac3a..bd632941d8 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1813,47 +1813,24 @@ completion.") (define-public python-rpy2 (package (name "python-rpy2") - (version "3.5.17") + (version "3.6.7") (source (origin (method url-fetch) (uri (pypi-uri "rpy2" version)) (sha256 (base32 - "10nmydlbmi0vyim7sx71isx3z2mnnfjmhf3248cicy9x1z1hizyv")))) + "17wczrbabp41bww11ivwrqvyn9ysgk4xx21h2csyj53xrr4ldyzi")))) (build-system pyproject-build-system) (arguments - (list - #:phases - #~(modify-phases %standard-phases - ;; XXX: ...trying to load module _rinterface_cffi_api: ERROR: - ;; - ;; See: <https://github.com/rpy2/rpy2/issues/1034>. - (delete 'sanity-check)))) - (propagated-inputs - (list python-cffi - python-jinja2 - python-numpy - python-pandas - python-pytz - python-ipython - python-tzlocal)) - (inputs - (list icu4c - libdeflate - pcre - python-numpy - readline - r-minimal - r-survival - r-ggplot2 - r-rsqlite - r-dplyr - r-dbplyr - zlib)) + ;; This is a meta package with tests moved to python-rpy2-rinterface and + ;; python-rpy2-robjects. + (list #:tests? #f)) (native-inputs - (list python-pytest-8 - python-setuptools)) + (list python-setuptools)) + (propagated-inputs + (list python-rpy2-rinterface + python-rpy2-robjects)) (home-page "https://rpy2.github.io") (synopsis "Python interface to the R language") (description "rpy2 is a redesign and rewrite of rpy. It is providing a |
