2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, setuptools
|
2019-11-15 21:04:45 +00:00
|
|
|
, numpy, scipy, gpy, emcee, nose }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "GPyOpt";
|
|
|
|
version = "unstable-2019-09-25";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = pname;
|
|
|
|
owner = "SheffieldML";
|
|
|
|
rev = "249b8ff29c52c12ed867f145a627d529372022d8";
|
|
|
|
sha256 = "1ywaw1kpdr7dv4s4cr7afmci86sw7w61178gs45b0lq08652zdlb";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # requires several packages not available in Nix
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
checkPhase = "nosetests -v GPyOpt/testing";
|
|
|
|
|
2019-11-19 03:20:51 +00:00
|
|
|
propagatedBuildInputs = [ setuptools numpy scipy gpy emcee ];
|
2019-11-15 21:04:45 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-11-15 21:04:45 +00:00
|
|
|
description = "Bayesian optimization toolbox in Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sheffieldml.github.io/GPyOpt";
|
2019-11-15 21:04:45 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
|
|
};
|
|
|
|
}
|