mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.gpyopt: provide setuptools at runtime, needed by the package
This commit is contained in:
parent
4a45f935d3
commit
e3e3bd61f8
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue