python2.pkgs.jupyter_client: pin at 5.x

Version 6.x dropped python2 compatibility.
This commit is contained in:
Timo Kaufmann
2020-05-08 07:22:16 +02:00
committed by Frederik Rietdijk
parent 863319fcb6
commit 1b8ceee71c
2 changed files with 43 additions and 1 deletions
+4 -1
View File
@@ -4180,7 +4180,10 @@ in {
inherit (pkgs.jsonnet) name src;
};
jupyter_client = callPackage ../development/python-modules/jupyter_client { };
jupyter_client = if isPy3k then
callPackage ../development/python-modules/jupyter_client { }
else
callPackage ../development/python-modules/jupyter_client/5.nix { };
jupyter_core = callPackage ../development/python-modules/jupyter_core { };