summary refs log tree commit diff
diff options
context:
space:
mode:
authorBarry Moore <chiroptical@gmail.com>2020-08-07 14:50:30 -0400
committerJon <jonringer@users.noreply.github.com>2020-08-07 19:59:39 -0700
commit102864c247f2c7591f1e8483fd9c471e1ff48d98 (patch)
tree4360eee11643522d25aa56a9cd85f2ed307a3333
parent3735c9ef908eceaf348215c7669870945eb3262a (diff)
downloadnixpkgs-102864c247f2c7591f1e8483fd9c471e1ff48d98.tar
nixpkgs-102864c247f2c7591f1e8483fd9c471e1ff48d98.tar.gz
nixpkgs-102864c247f2c7591f1e8483fd9c471e1ff48d98.tar.bz2
nixpkgs-102864c247f2c7591f1e8483fd9c471e1ff48d98.tar.lz
nixpkgs-102864c247f2c7591f1e8483fd9c471e1ff48d98.tar.xz
nixpkgs-102864c247f2c7591f1e8483fd9c471e1ff48d98.tar.zst
nixpkgs-102864c247f2c7591f1e8483fd9c471e1ff48d98.zip
pythonPackages.jupyterhub: 1.0.0 -> 1.1.0
-rw-r--r--pkgs/development/python-modules/jupyterhub/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/jupyterhub/default.nix b/pkgs/development/python-modules/jupyterhub/default.nix
index fa63af115f2..704d9174ebd 100644
--- a/pkgs/development/python-modules/jupyterhub/default.nix
+++ b/pkgs/development/python-modules/jupyterhub/default.nix
@@ -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.