Files
nixpkgs/pkgs/development/python-modules/joblib/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

71 lines
1.7 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
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.5.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-9PhuNR85/j0NMqnyw9ivHuTOwoWq/LJwA92lIFV2tEQ=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
lz4
psutil
];
nativeCheckInputs = [
pytestCheckHook
threadpoolctl
];
enabledTestPaths = [ "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
"test_memory" # tests - and the module itself - assume strictatime mount for build directory
]
++ lib.optionals stdenv.hostPlatform.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 = {
changelog = "https://github.com/joblib/joblib/releases/tag/${version}";
description = "Lightweight pipelining: using Python functions as pipeline jobs";
homepage = "https://joblib.readthedocs.io/";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}