mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
2a06c513cd
https://github.com/joblib/joblib/releases/tag/1.3.0 https://github.com/joblib/joblib/releases/tag/1.3.1
67 lines
1.4 KiB
Nix
67 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, 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.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-H5N5Bt9lMpupgBPclpL+IqTF5KZIES3lAFCLGKIbQeM=";
|
|
};
|
|
|
|
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.
|
|
];
|
|
|
|
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; [ ];
|
|
};
|
|
}
|