2017-09-13 09:34:39 +02:00
|
|
|
{ lib
|
2020-09-15 15:10:54 +02:00
|
|
|
, pythonOlder
|
2017-09-13 09:34:39 +02:00
|
|
|
, buildPythonPackage
|
2019-03-24 09:32:50 +01:00
|
|
|
, fetchPypi
|
2019-07-24 10:50:00 -07:00
|
|
|
, stdenv
|
2017-09-13 09:34:39 +02:00
|
|
|
, numpydoc
|
2020-11-30 12:53:05 -08:00
|
|
|
, pytestCheckHook
|
2018-08-08 15:30:26 -04:00
|
|
|
, python-lz4
|
2019-09-28 18:47:48 -07:00
|
|
|
, setuptools
|
|
|
|
, sphinx
|
2017-09-13 09:34:39 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "joblib";
|
2021-03-24 10:28:15 +01:00
|
|
|
version = "1.0.1";
|
2021-02-02 12:31:37 -05:00
|
|
|
disabled = pythonOlder "3.7";
|
2018-08-08 15:30:26 -04:00
|
|
|
|
2019-03-24 09:32:50 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 10:28:15 +01:00
|
|
|
sha256 = "9c17567692206d2f3fb9ecf5e991084254fe631665c450b443761c4186a613f7";
|
2017-09-13 09:34:39 +02:00
|
|
|
};
|
|
|
|
|
2020-11-30 12:53:05 -08:00
|
|
|
checkInputs = [ sphinx numpydoc pytestCheckHook ];
|
2019-09-28 18:47:48 -07:00
|
|
|
propagatedBuildInputs = [ python-lz4 setuptools ];
|
2017-09-13 09:34:39 +02:00
|
|
|
|
2020-11-30 12:53:05 -08:00
|
|
|
pytestFlagsArray = [ "joblib/test" ];
|
|
|
|
disabledTests = [
|
|
|
|
"test_disk_used" # test_disk_used is broken: https://github.com/joblib/joblib/issues/57
|
|
|
|
"test_parallel_call_cached_function_defined_in_jupyter" # jupyter not available during tests
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
"test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin.
|
|
|
|
];
|
2017-09-13 09:34:39 +02:00
|
|
|
|
2020-11-30 12:53:05 -08:00
|
|
|
meta = with lib; {
|
2017-09-13 09:34:39 +02:00
|
|
|
description = "Lightweight pipelining: using Python functions as pipeline jobs";
|
2019-12-08 17:50:31 +01:00
|
|
|
homepage = "https://joblib.readthedocs.io/";
|
2020-11-30 12:53:05 -08:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ costrouc ];
|
2017-09-13 09:34:39 +02:00
|
|
|
};
|
2017-11-02 08:19:58 +00:00
|
|
|
}
|