Unverified Commit 3a90e2d5 authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

Merge pull request #331106 from dotlambda/python3Packages.bayesian-optimization

python312Packages.bayesian-optimization: 1.4.3 -> 1.5.1
parents 4a09ea86 07c5581f
Loading
Loading
Loading
Loading
+20 −5
Original line number Diff line number Diff line
@@ -3,34 +3,49 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  scikit-learn,
  numpy,
  scipy,
  colorama,
  jupyter,
  matplotlib,
  nbconvert,
  nbformat,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "bayesian-optimization";
  version = "1.4.3";
  format = "setuptools";
  version = "1.5.1";
  pyproject = true;

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "bayesian-optimization";
    repo = "BayesianOptimization";
    rev = "refs/tags/v${version}";
    hash = "sha256-Bp/ZhVSW5lTGwnsd/doOXu++Gxw/51owCfMm96Qmgd4=";
    hash = "sha256-pDgvdQhlJ5aMRGdi2qXRXVCdJRvrOP/Nr0SSZyHH1WM=";
  };

  build-system = [ poetry-core ];

  propagatedBuildInputs = [
    scikit-learn
    numpy
    scipy
    colorama
  ];

  nativeCheckInputs = [ pytestCheckHook ];
  nativeCheckInputs = [
    jupyter
    matplotlib
    nbconvert
    nbformat
    pytestCheckHook
  ];

  pythonImportsCheck = [ "bayes_opt" ];