unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] Add joblib.
@ 2015-10-08  8:45 Ricardo Wurmus
  2015-10-08 11:54 ` Ludovic Courtès
  2016-10-24 21:18 ` Leo Famulari
  0 siblings, 2 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2015-10-08  8:45 UTC (permalink / raw)
  To: Guix-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-gnu-Add-python-joblib.patch --]
[-- Type: text/x-patch, Size: 1809 bytes --]

From 848f0f327e1cef97977d695c01480abd1c215bc3 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
Date: Wed, 7 Oct 2015 13:01:36 +0200
Subject: [PATCH] gnu: Add python-joblib.

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 267aebb..46fcb4a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2246,6 +2246,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")
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Add joblib.
  2015-10-08  8:45 [PATCH] Add joblib Ricardo Wurmus
@ 2015-10-08 11:54 ` Ludovic Courtès
  2016-10-24 21:18 ` Leo Famulari
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2015-10-08 11:54 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> skribis:

> From 848f0f327e1cef97977d695c01480abd1c215bc3 Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
> Date: Wed, 7 Oct 2015 13:01:36 +0200
> Subject: [PATCH] gnu: Add python-joblib.
>
> * gnu/packages/python.scm (python-joblib, python2-joblib): New
>   variables.

Sure, thanks!

Ludo'.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Add joblib.
  2015-10-08  8:45 [PATCH] Add joblib Ricardo Wurmus
  2015-10-08 11:54 ` Ludovic Courtès
@ 2016-10-24 21:18 ` Leo Famulari
  2016-10-29 22:01   ` Ricardo Wurmus
  1 sibling, 1 reply; 4+ messages in thread
From: Leo Famulari @ 2016-10-24 21:18 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

On Thu, Oct 08, 2015 at 10:45:39AM +0200, Ricardo Wurmus wrote:
> From 848f0f327e1cef97977d695c01480abd1c215bc3 Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
> Date: Wed, 7 Oct 2015 13:01:36 +0200
> Subject: [PATCH] gnu: Add python-joblib.
> 
> * gnu/packages/python.scm (python-joblib, python2-joblib): New
>   variables.

This is failing on core-updates:

https://hydra.gnu.org/build/1554292

Any takers?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Add joblib.
  2016-10-24 21:18 ` Leo Famulari
@ 2016-10-29 22:01   ` Ricardo Wurmus
  0 siblings, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2016-10-29 22:01 UTC (permalink / raw)
  To: Leo Famulari; +Cc: Guix-devel


Leo Famulari <leo@famulari.name> writes:

> On Thu, Oct 08, 2015 at 10:45:39AM +0200, Ricardo Wurmus wrote:
>> From 848f0f327e1cef97977d695c01480abd1c215bc3 Mon Sep 17 00:00:00 2001
>> From: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
>> Date: Wed, 7 Oct 2015 13:01:36 +0200
>> Subject: [PATCH] gnu: Add python-joblib.
>> 
>> * gnu/packages/python.scm (python-joblib, python2-joblib): New
>>   variables.
>
> This is failing on core-updates:
>
> https://hydra.gnu.org/build/1554292
>
> Any takers?

I’ll take care of this.  Thanks for the note!

~~ Ricardo

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-10-29 22:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-08  8:45 [PATCH] Add joblib Ricardo Wurmus
2015-10-08 11:54 ` Ludovic Courtès
2016-10-24 21:18 ` Leo Famulari
2016-10-29 22:01   ` Ricardo Wurmus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).