pythonPackages.jupyterhub: 1.0.0 -> 1.1.0

This commit is contained in:
Barry Moore 2020-08-07 14:50:30 -04:00 committed by Jon
parent 3735c9ef90
commit 102864c247

View file

@ -18,6 +18,7 @@
, nodePackages
, oauthlib
, certipy
, jupyter-telemetry
}:
let
@ -53,12 +54,12 @@ in
buildPythonPackage rec {
pname = "jupyterhub";
version = "1.0.0";
version = "1.1.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "0zx6gw9yhgki05j21p6x1x2sf5a2mg2c2mx0ii8rl6q4b98ilm1k";
sha256 = "1mqknz0rxqzx4nc57vscvfh2d4znzlzpy83ancqxdaq3b8i70al5";
};
# Most of this only applies when building from source (e.g. js/css assets are
@ -110,6 +111,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
alembic ipython jinja2 pamela python-oauth2 requests sqlalchemy tornado
traitlets prometheus_client async_generator notebook certipy oauthlib
jupyter-telemetry
];
# Disable tests because they take an excessive amount of time to complete.