python3Packages.optuna-dashboard: init at 0.18.0

This commit is contained in:
Johan Herland 2025-06-17 09:40:06 +00:00
parent ccc919c55a
commit 830188f8b5
No known key found for this signature in database
2 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,78 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
alembic,
boto3,
botorch,
bottle,
cmaes,
colorlog,
moto,
numpy,
optuna,
packaging,
plotly,
pytestCheckHook,
setuptools,
scikit-learn,
scipy,
streamlit,
tqdm,
}:
buildPythonPackage rec {
pname = "optuna-dashboard";
version = "0.18.0";
pyproject = true;
src = fetchFromGitHub {
owner = "optuna";
repo = "optuna-dashboard";
tag = "v${version}";
hash = "sha256-0L1QTw9srZsHWDVP4J0WMIvndn5pn51Hs/Xz/tusv0I=";
};
dependencies = [
alembic
bottle
cmaes
colorlog
numpy
optuna
packaging
scikit-learn
scipy
tqdm
];
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
boto3
botorch
moto
plotly
streamlit
];
# Disable tests that use playwright (needs network)
disabledTestPaths = [
"e2e_tests/test_dashboard/test_usecases/test_preferential_optimization.py"
"e2e_tests/test_dashboard/test_usecases/test_study_history.py"
"e2e_tests/test_dashboard/visual_regression_test.py"
"e2e_tests/test_standalone/test_study_list.py"
];
pythonImportsCheck = [ "optuna_dashboard" ];
meta = {
description = "Real-time Web Dashboard for Optuna";
homepage = "https://github.com/optuna/optuna-dashboard";
changelog = "https://github.com/optuna/optuna-dashboard/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jherland ];
mainProgram = "optuna-dashboard";
};
}

View File

@ -10831,6 +10831,8 @@ self: super: with self; {
optuna = callPackage ../development/python-modules/optuna { };
optuna-dashboard = callPackage ../development/python-modules/optuna-dashboard { };
optype = callPackage ../development/python-modules/optype { };
opuslib = callPackage ../development/python-modules/opuslib { };