me
/
guix
Archived
1
0
Fork 0

gnu: python2-joblib: Do not inherit source from python-joblib.

* gnu/packages/python-xyz.scm (python2-joblib)[version]: Explicitly set to
0.14.1.
[source]: Do not inherit.
master
Ricardo Wurmus 2021-11-20 12:37:13 +01:00
parent 76df1ad3df
commit f407e4b0f9
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 10 additions and 1 deletions

View File

@ -4039,8 +4039,17 @@ and lazy re-evaluation (memoize pattern), easy simple parallel computing
logging and tracing of the execution.")
(license license:bsd-3)))
;; Newer versions of joblib don't support Python 2.
(define-public python2-joblib
(package-with-python2 python-joblib))
(package
(inherit (package-with-python2 python-joblib))
(version "0.14.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "joblib" version))
(sha256
(base32
"1j464w137w6s367gl697j1l63g52akydrxgv4czlck36ynjfwc06"))))))
(define-public python-daemon
(package