Merge pull request #73473 from bcdarwin/gpyopt

pythonPackages.gpyopt: init at unstable-2019-09-25
This commit is contained in:
Mario Rodas 2019-11-18 21:57:38 -05:00 committed by GitHub
commit 93be69d42f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
, 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";
propagatedBuildInputs = [ numpy scipy gpy emcee ];
meta = with stdenv.lib; {
description = "Bayesian optimization toolbox in Python";
homepage = https://sheffieldml.github.io/GPyOpt;
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}

View file

@ -2462,6 +2462,8 @@ in {
gpy = callPackage ../development/python-modules/gpy { };
gpyopt = callPackage ../development/python-modules/gpyopt { };
gitdb = callPackage ../development/python-modules/gitdb { };
gitdb2 = callPackage ../development/python-modules/gitdb2 { };