gnu: python-joblib: Update to 1.3.2.
* gnu/packages/python-xyz.scm (python-joblib): Update to 1.3.2. [build-system]: Update to pyproject-build-system. [arguments] <#:phases>: Remove check phase. <#:test-flags>: Keep former test flag. [propagated-inputs]: Add python-psutil. Change-Id: Ide110a19431b1d26e1d7dd8d1adc3b3f0f417749 Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
5d1ba303df
commit
a24aa227f7
1 changed files with 8 additions and 14 deletions
|
@ -6220,26 +6220,20 @@ bookmarks using a declarative input in the form of a markdown file.")
|
||||||
(define-public python-joblib
|
(define-public python-joblib
|
||||||
(package
|
(package
|
||||||
(name "python-joblib")
|
(name "python-joblib")
|
||||||
(version "1.1.1")
|
(version "1.3.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "joblib" version))
|
(uri (pypi-uri "joblib" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0019p280s2k941mihl67l7y6amwx86639xp3zvpsg1lmyish67rh"))))
|
"1cbjjzsh9hzaqr2cqja95673p7j88b8bd02hjpkq8xz147k6by4j"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:test-flags ; disabled to avoid having to depend on ipython/jupyter
|
||||||
(replace 'check
|
#~(list "-k" "not test_parallel_call_cached_function_defined_in_jupyter")))
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(native-inputs (list python-pytest))
|
||||||
(when tests?
|
(propagated-inputs (list python-psutil))
|
||||||
(setenv "JOBLIB_MULTIPROCESSING" "0")
|
|
||||||
(invoke "pytest" "-v" "joblib"
|
|
||||||
;; We disable this test to avoid having to depend on ipython/jupyter
|
|
||||||
"-k" "not test_parallel_call_cached_function_defined_in_jupyter")))))))
|
|
||||||
(native-inputs
|
|
||||||
(list python-pytest))
|
|
||||||
(home-page "https://joblib.readthedocs.io/")
|
(home-page "https://joblib.readthedocs.io/")
|
||||||
(synopsis "Using Python functions as pipeline jobs")
|
(synopsis "Using Python functions as pipeline jobs")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue