mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #73473 from bcdarwin/gpyopt
pythonPackages.gpyopt: init at unstable-2019-09-25
This commit is contained in:
commit
93be69d42f
2 changed files with 31 additions and 0 deletions
29
pkgs/development/python-modules/gpyopt/default.nix
Normal file
29
pkgs/development/python-modules/gpyopt/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue