python310Packages.jupyterlab_server: update disabled

- update meta
This commit is contained in:
Fabian Affolter 2022-10-17 08:46:05 +02:00 committed by GitHub
parent 40cbc8392f
commit 9e87c0b376
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}