depot/third_party/nixpkgs/pkgs/development/python-modules/botorch/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

57 lines
1,020 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
gpytorch,
linear-operator,
multipledispatch,
pyro-ppl,
setuptools,
setuptools-scm,
wheel,
torch,
scipy,
pytestCheckHook,
pythonRelaxDepsHook,
}:
buildPythonPackage rec {
pname = "botorch";
version = "0.11.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "pytorch";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-eL0buwqrGt4qcwdzCwD85IyiWjAFuP1n8aUb2pvvIKw=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [
gpytorch
linear-operator
multipledispatch
pyro-ppl
scipy
torch
];
pythonRelaxDeps = [ "linear-operator" ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "botorch" ];
meta = with lib; {
description = "Bayesian Optimization in PyTorch";
homepage = "https://botorch.org";
license = licenses.mit;
maintainers = with maintainers; [ veprbl ];
};
}