mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: python-rpy2: Update to 3.3.5.
* gnu/packages/statistics.scm (python-rpy2): Update to 3.3.5. [source]: Add patches to fix test failures. [arguments]: Adjust custom 'check phase.
This commit is contained in:
parent
d0fc1e832c
commit
24cc25be89
1 changed files with 78 additions and 67 deletions
|
@ -5683,23 +5683,33 @@ (define-public r-colorout
|
|||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-rpy2
|
||||
;; We need to take this changeset instead of the RELEASE_3_0_4 tag, because
|
||||
;; it fixes a regression when using ggplot 3.2.0.
|
||||
(let ((changeset "19868a8")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "python-rpy2")
|
||||
(version (git-version "3.0.4" revision changeset))
|
||||
(version "3.3.5")
|
||||
(source
|
||||
(origin
|
||||
(method hg-fetch)
|
||||
(uri (hg-reference
|
||||
(url "https://bitbucket.org/rpy2/rpy2")
|
||||
(changeset changeset)))
|
||||
(file-name (git-file-name name version))
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "rpy2" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1bb0wslcbj3wjvyk3jb9yyzdi6adfqh5vfgcvn22dyzxzbhcs8kk"))))
|
||||
"1bs36rds5fq8821l5q85q2b25161rs9ppw5c26x0hjwj487gpcfj"))
|
||||
;; These patches should be removed with the next release.
|
||||
(patches
|
||||
(list
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri "https://github.com/rpy2/rpy2/commit/04c57598f00145d868ea8da31ac1b1e7c49f7570.patch")
|
||||
(file-name "python-rpy2-fix-test-failure.patch")
|
||||
(sha256
|
||||
(base32
|
||||
"1lqd3yxjfx1rxrybcmnapy0r6ambg9myrb98q4nlfhpxanwfdbbh")))
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri "https://github.com/rpy2/rpy2/commit/685f67d0a6b47ea80e718116a10755019446aef7.patch")
|
||||
(file-name "python-rpy2-r-console-test-fix.patch")
|
||||
(sha256
|
||||
(base32
|
||||
"18wpvfaa4c13d44cb4sw88c3c7403xdy5m8h82wfq8fjmcq3cmzn")))))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:modules ((ice-9 ftw)
|
||||
|
@ -5719,7 +5729,8 @@ (define-public python-rpy2
|
|||
(scandir (string-append cwd "/build")))
|
||||
":"
|
||||
(getenv "PYTHONPATH"))))
|
||||
(invoke "pytest" "-v" "rpy/tests/"))))))
|
||||
;; test_vector_complex has issues when run in our environment.
|
||||
(invoke "pytest" "-v" "rpy2/tests/" "-k" "not test_vector_complex"))))))
|
||||
(propagated-inputs
|
||||
`(("python-cffi" ,python-cffi)
|
||||
("python-six" ,python-six)
|
||||
|
@ -5752,7 +5763,7 @@ (define-public python-rpy2
|
|||
;; Any of these licenses can be picked for the R interface. The whole
|
||||
;; project is released under GPLv2+ according to the license declaration
|
||||
;; in "setup.py".
|
||||
(license (list license:mpl2.0 license:gpl2+ license:lgpl2.1+)))))
|
||||
(license (list license:mpl2.0 license:gpl2+ license:lgpl2.1+))))
|
||||
|
||||
(define-public java-jdistlib
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue