python311Packages.botorch: relax deps

This commit is contained in:
natsukium 2024-02-03 16:28:16 +09:00
parent 7d7031f2a8
commit 51ff06a675
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -11,6 +11,7 @@
, torch
, scipy
, pytestCheckHook
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
@ -26,6 +27,7 @@ buildPythonPackage rec {
};
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
setuptools-scm
wheel
@ -40,6 +42,10 @@ buildPythonPackage rec {
torch
];
pythonRelaxDeps = [
"linear-operator"
];
checkInputs = [
pytestCheckHook
];