diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-10-30 17:04:24 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-10-30 17:04:24 +0100 |
commit | f34ef3317e6ee87c28e8832d15e59afe4f391f03 (patch) | |
tree | b0a24b3fa1c9c9e477835acda4685bf1978dc1f5 | |
parent | 593dfdc33b071f5f0c2d51d9b7f81d36b7c2133e (diff) | |
download | patches-f34ef3317e6ee87c28e8832d15e59afe4f391f03.tar patches-f34ef3317e6ee87c28e8832d15e59afe4f391f03.tar.gz |
gnu: python-joblib: Update to 0.10.3.
* gnu/packages/python.scm (python-joblib): Update to 0.10.3.
[native-inputs]: Add python-sphinx, python-docutils, python-numpydoc.
-rw-r--r-- | gnu/packages/python.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 25e06e994b..c27137c540 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2749,18 +2749,20 @@ logic-free templating system Mustache.") (define-public python-joblib (package (name "python-joblib") - (version "0.9.0b4") + (version "0.10.3") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/" - "j/joblib/joblib-" version ".tar.gz")) + (uri (pypi-uri "joblib" version)) (sha256 (base32 - "1dvw3f8jgj6h0fxkghbgyclvdzc7l0ig7n0vis70awb5kczb9bs3")))) + "0787k919zlfmgymprz5bzv0v1df5bbirlf3awrghmjgvkrd9dci9")))) (build-system python-build-system) (native-inputs `(("python-setuptools" ,python-setuptools) - ("python-nose" ,python-nose))) + ("python-nose" ,python-nose) + ("python-sphinx" ,python-sphinx) + ("python-docutils" ,python-docutils) + ("python-numpydoc" ,python-numpydoc))) (home-page "http://pythonhosted.org/joblib/") (synopsis "Using Python functions as pipeline jobs") (description |