push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
{
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 = 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 = [ ];
};
}