10 # propagates (optional, but unspecified)
11 # https://github.com/joblib/joblib#dependencies
21 buildPythonPackage rec {
26 disabled = pythonOlder "3.7";
29 inherit pname version;
30 hash = "sha256-kvhl5iHhd4TnlVCAttBCSJ47jilJScxExurDBPWXcrE=";
37 propagatedBuildInputs = [
52 "test_disk_used" # test_disk_used is broken: https://github.com/joblib/joblib/issues/57
53 "test_parallel_call_cached_function_defined_in_jupyter" # jupyter not available during tests
54 "test_nested_parallel_warnings" # tests is flaky under load
55 ] ++ lib.optionals stdenv.isDarwin [
56 "test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin.
60 changelog = "https://github.com/joblib/joblib/releases/tag/${version}";
61 description = "Lightweight pipelining: using Python functions as pipeline jobs";
62 homepage = "https://joblib.readthedocs.io/";
63 license = licenses.bsd3;
64 maintainers = with maintainers; [ ];