blob: 298a2ce83adfb913d92744dbf4bfb1a1ce5e04b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, fetchpatch
, pythonAtLeast
, stdenv
# build-system
, setuptools
# propagates (optional, but unspecified)
# https://github.com/joblib/joblib#dependencies
, lz4
, psutil
# tests
, pytestCheckHook
, threadpoolctl
}:
buildPythonPackage rec {
pname = "joblib";
version = "1.3.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-kvhl5iHhd4TnlVCAttBCSJ47jilJScxExurDBPWXcrE=";
};
patches = [
(fetchpatch {
name = "suppress-deprecation-warnings-with-python312.patch";
url = "https://github.com/joblib/joblib/commit/05caf0772d605799e5d2337018fd32ac829b37aa.patch";
hash = "sha256-bfqxCLFkCnuWMIkIbcjh+nCTv38A8jxvyCHeJPxoZwg=";
})
];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
lz4
psutil
];
nativeCheckInputs = [
pytestCheckHook
threadpoolctl
];
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
"test_nested_parallel_warnings" # tests is flaky under load
] ++ lib.optionals stdenv.isDarwin [
"test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin.
] ++ lib.optionals (pythonAtLeast "3.12") [
# deprecation warnings with python3.12 https://github.com/joblib/joblib/issues/1478
"test_main_thread_renamed_no_warning"
"test_background_thread_parallelism"
];
meta = with lib; {
changelog = "https://github.com/joblib/joblib/releases/tag/${version}";
description = "Lightweight pipelining: using Python functions as pipeline jobs";
homepage = "https://joblib.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}
|