guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add python-joblib.


From: Ricardo Wurmus
Subject: 01/03: gnu: Add python-joblib.
Date: Thu, 08 Oct 2015 12:40:48 +0000

rekado pushed a commit to branch master
in repository guix.

commit 1285119bdedfd94c58e8938e465f626d998c4633
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Oct 7 13:01:36 2015 +0200

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 2c9772e..5dda0b3 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2208,6 +2208,33 @@ written in pure Python.")
 (define-public python2-jinja2
   (package-with-python2 python-jinja2))
 
+(define-public python-joblib
+  (package
+    (name "python-joblib")
+    (version "0.9.0b4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://pypi.python.org/packages/source/";
+                                  "j/joblib/joblib-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1dvw3f8jgj6h0fxkghbgyclvdzc7l0ig7n0vis70awb5kczb9bs3"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-setuptools" ,python-setuptools)
+       ("python-nose"       ,python-nose)))
+    (home-page "http://pythonhosted.org/joblib/";)
+    (synopsis "Using Python functions as pipeline jobs")
+    (description
+     "Joblib is a set of tools to provide lightweight pipelining in Python.
+In particular, joblib offers: transparent disk-caching of the output values
+and lazy re-evaluation (memoize pattern), easy simple parallel computing
+logging and tracing of the execution.")
+    (license bsd-3)))
+
+(define-public python2-joblib
+  (package-with-python2 python-joblib))
+
 (define-public python-docutils
   (package
     (name "python-docutils")



reply via email to

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