pythonPackages.gpyopt: provide setuptools at runtime, needed by the package

This commit is contained in:
Ben Darwin 2019-11-18 22:20:51 -05:00 committed by Jon
parent 4a45f935d3
commit e3e3bd61f8

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
{ stdenv, buildPythonPackage, fetchFromGitHub, setuptools
, numpy, scipy, gpy, emcee, nose }:
buildPythonPackage rec {
@ -18,7 +18,7 @@ buildPythonPackage rec {
checkPhase = "nosetests -v GPyOpt/testing";
propagatedBuildInputs = [ numpy scipy gpy emcee ];
propagatedBuildInputs = [ setuptools numpy scipy gpy emcee ];
meta = with stdenv.lib; {
description = "Bayesian optimization toolbox in Python";