14 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 sha256 = "092bnvr724cfvka8267z687bf086fvm7i1hwslkyrzf1g836dn3s";
24 checkInputs = [ sphinx numpydoc pytestCheckHook ];
25 propagatedBuildInputs = [ python-lz4 setuptools ];
27 pytestFlagsArray = [ "joblib/test" ];
29 "test_disk_used" # test_disk_used is broken: https://github.com/joblib/joblib/issues/57
30 "test_parallel_call_cached_function_defined_in_jupyter" # jupyter not available during tests
31 ] ++ lib.optionals stdenv.isDarwin [
32 "test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin.
36 description = "Lightweight pipelining: using Python functions as pipeline jobs";
37 homepage = "https://joblib.readthedocs.io/";
38 license = licenses.bsd3;
39 maintainers = with maintainers; [ costrouc ];