gnu: Add python-joblib.

* gnu/packages/python.scm (python-joblib, python2-joblib): New
  variables.
This commit is contained in:
Ricardo Wurmus 2015-10-07 13:01:36 +02:00
parent fd5b213302
commit 1285119bde

View file

@ -2208,6 +2208,33 @@ (define-public python-jinja2
(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")