guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: Add python-rpy2.


From: Ricardo Wurmus
Subject: 01/03: gnu: Add python-rpy2.
Date: Mon, 20 Jul 2015 09:50:53 +0000

rekado pushed a commit to branch master
in repository guix.

commit c9b1b4f9c66fd45cae526428d8a483c2d3ff3788
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Jul 7 13:56:49 2015 +0200

    gnu: Add python-rpy2.
    
    * gnu/packages/python.scm (python-rpy2, python2-rpy2): New variables.
---
 gnu/packages/python.scm |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4fd5eef..82aff00 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -48,9 +48,11 @@
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages networking)
   #:use-module (gnu packages ncurses)
+  #:use-module (gnu packages pcre)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages readline)
+  #:use-module (gnu packages statistics)
   #:use-module (gnu packages texlive)
   #:use-module (gnu packages texinfo)
   #:use-module (gnu packages tls)
@@ -2724,6 +2726,42 @@ those files.  It can also efficiently manipulate ranges 
of integers using set
 operators such as union, intersection, and difference.")
     (license asl2.0)))
 
+(define-public python-rpy2
+  (package
+    (name "python-rpy2")
+    (version "2.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://pypi.python.org/packages/source/r/rpy2";
+                           "/rpy2-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1dp4l8hpv0jpf4crz4wis6in3lvwk86cr5zvpw410y4a07rrbqjk"))))
+    (build-system python-build-system)
+    (inputs
+     `(("python-six" ,python-six)
+       ("readline" ,readline)
+       ("icu4c" ,icu4c)
+       ("pcre" ,pcre)
+       ("r" ,r)))
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)))
+    (home-page "http://rpy.sourceforge.net/";)
+    (synopsis "Python interface to the R language")
+    (description "rpy2 is a redesign and rewrite of rpy.  It is providing a
+low-level interface to R from Python, a proposed high-level interface,
+including wrappers to graphical libraries, as well as R-like structures and
+functions.")
+    (license gpl3+)))
+
+(define-public python2-rpy2
+  (let ((rpy2 (package-with-python2 python-rpy2)))
+    (package (inherit rpy2)
+      (native-inputs
+       `(("python2-singledispatch" ,python2-singledispatch)
+         ,@(package-native-inputs rpy2))))))
+
 (define-public python-scipy
   (package
     (name "python-scipy")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]