about summary refs log tree commit diff
diff options
context:
space:
mode:
authorisgy <isgy@teiyg.com>2019-12-26 14:32:45 +0000
committerisgy <isgy@teiyg.com>2019-12-26 14:32:45 +0000
commitf6f2dff12f40793dfb667f73bfe20929fc28befb (patch)
tree641dc9c92d09d958ccd3c57b5088b1b3944fe8aa
parent96f5b6315d72aabb3a8c792bc8f4dbf64ce93aa4 (diff)
downloadnixlib-f6f2dff12f40793dfb667f73bfe20929fc28befb.tar
nixlib-f6f2dff12f40793dfb667f73bfe20929fc28befb.tar.gz
nixlib-f6f2dff12f40793dfb667f73bfe20929fc28befb.tar.bz2
nixlib-f6f2dff12f40793dfb667f73bfe20929fc28befb.tar.lz
nixlib-f6f2dff12f40793dfb667f73bfe20929fc28befb.tar.xz
nixlib-f6f2dff12f40793dfb667f73bfe20929fc28befb.tar.zst
nixlib-f6f2dff12f40793dfb667f73bfe20929fc28befb.zip
python3Packages.jupyterhub: 0.9.4 -> 1.0.0
-rw-r--r--pkgs/development/python-modules/jupyterhub/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/jupyterhub/default.nix b/pkgs/development/python-modules/jupyterhub/default.nix
index b291a2b0d3b2..952e5b781a1c 100644
--- a/pkgs/development/python-modules/jupyterhub/default.nix
+++ b/pkgs/development/python-modules/jupyterhub/default.nix
@@ -16,6 +16,8 @@
 , notebook
 , pythonOlder
 , nodePackages
+, oauthlib
+, certipy
 }:
 
 let
@@ -51,12 +53,12 @@ in
 
 buildPythonPackage rec {
   pname = "jupyterhub";
-  version = "0.9.4";
+  version = "1.0.0";
   disabled = pythonOlder "3.5";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "7848bbb299536641a59eb1977ec3c7c95d931bace4a2803d7e9b28b9256714da";
+    sha256 = "0zx6gw9yhgki05j21p6x1x2sf5a2mg2c2mx0ii8rl6q4b98ilm1k";
   };
 
   # Most of this only applies when building from source (e.g. js/css assets are
@@ -107,7 +109,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [
     alembic ipython jinja2 pamela python-oauth2 requests sqlalchemy tornado
-    traitlets prometheus_client async_generator notebook
+    traitlets prometheus_client async_generator notebook certipy oauthlib
   ];
 
   # Disable tests because they take an excessive amount of time to complete.