python310Packages.jupyterhub: 1.3.0 -> 1.5.0

https://github.com/jupyterhub/jupyterhub/blob/1.5.0/docs/source/changelog.md

fixes CVE-2021-41247
This commit is contained in:
Robert Schütz 2022-06-21 00:52:07 +00:00
parent cb8ab777b8
commit af1bf5dc71

View file

@ -61,12 +61,12 @@ in
buildPythonPackage rec { buildPythonPackage rec {
pname = "jupyterhub"; pname = "jupyterhub";
version = "1.3.0"; version = "1.5.0";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "13pf6qhimpaxj20871ff5rvwwan59320cdhhrn9cfh6314971zq5"; sha256 = "sha256-3GGPZXwjukYoDjYlflCTGAZnS6Dp5kmK+wke/GIm1p0=";
}; };
# Most of this only applies when building from source (e.g. js/css assets are # Most of this only applies when building from source (e.g. js/css assets are
@ -158,6 +158,7 @@ buildPythonPackage rec {
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
description = "Serves multiple Jupyter notebook instances"; description = "Serves multiple Jupyter notebook instances";
homepage = "https://jupyter.org/"; homepage = "https://jupyter.org/";
changelog = "https://github.com/jupyterhub/jupyterhub/blob/${version}/docs/source/changelog.md";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ ixxie cstrahan ]; maintainers = with maintainers; [ ixxie cstrahan ];
}; };