about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jupyter_console
diff options
context:
space:
mode:
authorMerijn Broeren <merijnb@iloquent.com>2019-11-06 19:05:08 +0000
committerJon <jonringer@users.noreply.github.com>2019-11-06 13:12:36 -0800
commit8b8db86860fe2d51ebcfb0b005ff28d0a9ae669b (patch)
tree5fca1786e1fc4a3a07e54a1a904401b141520f4b /pkgs/development/python-modules/jupyter_console
parentdec234f986dec6a6011ca5dc11ed6bd07298d867 (diff)
Revert "python: jupyter_console: 5.2.0 -> 6.0.0"
This reverts commit dc4eb2fc5e6c2731dd61e75aa7823f91aa29bf31. It was
added in a large PR (#71893) by @fridh, where he already predicted some of
the changes would have to be reverted. This is an obvious one, it breaks
python 2.7 compatibility, as that needs 5.x of jupyter_console.
Diffstat (limited to 'pkgs/development/python-modules/jupyter_console')
-rw-r--r--pkgs/development/python-modules/jupyter_console/5.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/jupyter_console/5.nix b/pkgs/development/python-modules/jupyter_console/5.nix
index abb162cd5185a..440f22b133215 100644
--- a/pkgs/development/python-modules/jupyter_console/5.nix
+++ b/pkgs/development/python-modules/jupyter_console/5.nix
@@ -11,11 +11,11 @@
 
 buildPythonPackage rec {
   pname = "jupyter_console";
-  version = "6.0.0";
+  version = "5.2.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "308ce876354924fb6c540b41d5d6d08acfc946984bf0c97777c1ddcb42e0b2f5";
+    sha256 = "545dedd3aaaa355148093c5609f0229aeb121b4852995c2accfa64fe3e0e55cd";
   };
 
   checkInputs = [ nose ];