From 90cb9fa187df144d5dfe32cc0f7f027346223159 Mon Sep 17 00:00:00 2001 From: vglfr Date: Tue, 2 Jul 2024 20:45:00 +0200 Subject: [PATCH] python312Packages.jupyterlab-execute-time: review fixes --- .../python-modules/jupyterlab-execute-time/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/jupyterlab-execute-time/default.nix b/pkgs/development/python-modules/jupyterlab-execute-time/default.nix index ae14143627ef..8af2907fe092 100644 --- a/pkgs/development/python-modules/jupyterlab-execute-time/default.nix +++ b/pkgs/development/python-modules/jupyterlab-execute-time/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { --replace '"jupyterlab~=4.0.0"' "" ''; - nativeBuildInputs = [ + dependencies = [ jupyterlab jupyter-packaging ]; @@ -32,10 +32,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "jupyterlab_execute_time" ]; - meta = with lib; { - description = "A JupyterLab extension for displaying cell timings"; + meta = { + description = "JupyterLab extension for displaying cell timings"; homepage = "https://github.com/deshaw/jupyterlab-execute-time"; - license = licenses.bsd3; - maintainers = with maintainers; [ vglfr ]; + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.vglfr ]; }; }