c7f94ff3ce
GitOrigin-RevId: b85ed9dcbf187b909ef7964774f8847d554fab3b
56 lines
954 B
Nix
56 lines
954 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, gpytorch
|
|
, linear_operator
|
|
, multipledispatch
|
|
, pyro-ppl
|
|
, setuptools
|
|
, setuptools-scm
|
|
, wheel
|
|
, torch
|
|
, scipy
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "botorch";
|
|
version = "0.9.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pytorch";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-8obS+qMQwepKUxPkMbufR/SaacYekl6FA6t6XW6llA4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gpytorch
|
|
linear_operator
|
|
multipledispatch
|
|
pyro-ppl
|
|
scipy
|
|
torch
|
|
];
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
pythonImportsCheck = [ "botorch" ];
|
|
|
|
meta = with lib; {
|
|
description = "Bayesian Optimization in PyTorch";
|
|
homepage = "https://botorch.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|