From 40cbc8392f43ee123fde4c7a3d41df8d7200d695 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 16 Oct 2022 09:23:17 +0000 Subject: [PATCH 1/2] python310Packages.jupyterlab_server: 2.15.2 -> 2.16.0 --- pkgs/development/python-modules/jupyterlab_server/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/jupyterlab_server/default.nix b/pkgs/development/python-modules/jupyterlab_server/default.nix index 1c2976cdf03e..1abcd2fdeba6 100644 --- a/pkgs/development/python-modules/jupyterlab_server/default.nix +++ b/pkgs/development/python-modules/jupyterlab_server/default.nix @@ -19,13 +19,13 @@ buildPythonPackage rec { pname = "jupyterlab_server"; - version = "2.15.2"; + version = "2.16.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-wLzdRgbmQObxbSNs6sVTNtyL+Yy7zgZ68nUkzML7JkA="; + sha256 = "sha256-0bo0LPfoQ+yyw6Pf4z3hS4Nd+Xiqe0Ecqt3/lacr0so="; }; nativeBuildInputs = [ From 9e87c0b3764db6f9bb93b27dc7f0241d303b0264 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 17 Oct 2022 08:46:05 +0200 Subject: [PATCH 2/2] python310Packages.jupyterlab_server: update disabled - update meta --- .../python-modules/jupyterlab_server/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/jupyterlab_server/default.nix b/pkgs/development/python-modules/jupyterlab_server/default.nix index 1abcd2fdeba6..8e8f8ef87b24 100644 --- a/pkgs/development/python-modules/jupyterlab_server/default.nix +++ b/pkgs/development/python-modules/jupyterlab_server/default.nix @@ -21,11 +21,12 @@ buildPythonPackage rec { pname = "jupyterlab_server"; version = "2.16.0"; format = "pyproject"; - disabled = pythonOlder "3.6"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-0bo0LPfoQ+yyw6Pf4z3hS4Nd+Xiqe0Ecqt3/lacr0so="; + hash = "sha256-0bo0LPfoQ+yyw6Pf4z3hS4Nd+Xiqe0Ecqt3/lacr0so="; }; nativeBuildInputs = [ @@ -39,7 +40,9 @@ buildPythonPackage rec { babel jupyter_server tomli - ] ++ lib.optional (pythonOlder "3.10") importlib-metadata; + ] ++ lib.optional (pythonOlder "3.10") [ + importlib-metadata + ]; checkInputs = [ openapi-core @@ -71,8 +74,9 @@ buildPythonPackage rec { meta = with lib; { description = "A set of server components for JupyterLab and JupyterLab like applications"; - homepage = "https://jupyter.org"; + homepage = "https://jupyterlab-server.readthedocs.io/"; + changelog = "https://github.com/jupyterlab/jupyterlab_server/blob/v${version}/CHANGELOG.md"; license = licenses.bsdOriginal; - maintainers = [ maintainers.costrouc ]; + maintainers = with maintainers; [ costrouc ]; }; }