depot/third_party/nixpkgs/pkgs/development/python-modules/botorch/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

60 lines
1,016 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.10.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "pytorch";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-IaFtQWrgOhVHDOiPQ4oG8l+Q0igWamYVWEReGccbVoI=";
};
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 ];
};
}