mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-14 12:00:20 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, flit
|
|
, pytestCheckHook
|
|
, numpy
|
|
, scipy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "threadpoolctl";
|
|
version = "3.1.0";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
format = "flit";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "joblib";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-/qt7cgFbvpc1BLZC7a4S0RToqSggKXAqF1Xr6xOqzw8=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
numpy
|
|
scipy
|
|
];
|
|
|
|
disabledTests = [
|
|
# accepts a limited set of cpu models based on project
|
|
# developers' hardware
|
|
"test_architecture"
|
|
# https://github.com/joblib/threadpoolctl/issues/128
|
|
"test_command_line_command_flag"
|
|
"test_command_line_import_flag"
|
|
"test_controller_info_actualized"
|
|
"test_set_threadpool_limits_by_api"
|
|
"test_set_threadpool_limits_no_limit"
|
|
"test_threadpool_limits_by_prefix"
|
|
"test_threadpool_limits_function_with_side_effect"
|
|
"test_threadpool_limits_manual_restore"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"threadpoolctl"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/joblib/threadpoolctl";
|
|
description = "Helpers to limit number of threads used in native libraries";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
|
|
}
|