Revert "python.pkgs.ipython: allow prompt_toolkit 2.0"

Too many packages still rely on prompt_toolkit 1.x. Therefore, that bump was reverted. That also meant this had to be reverted.

This reverts commit 178b84c10d36cab7912c36d3fe266062254d8a72.
This commit is contained in:
Frederik Rietdijk 2018-07-28 10:18:46 +02:00
parent dd7e291b5f
commit c9dca79fda

@ -3,7 +3,6 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, fetchpatch
# Build dependencies
, glibcLocales
# Test dependencies
@ -35,12 +34,6 @@ buildPythonPackage rec {
substituteInPlace setup.py --replace "'gnureadline'" " "
'';
# Upgrade to prompt_toolkit 2.0
patches = fetchpatch {
url = https://github.com/ipython/ipython/commit/8e256bd37373f98580ba1ef1d3fcfd7976802238.patch;
sha256 = "1d9qy2z21n4frf15g4aj7xi011d1d3qc31gs27f2v23j0gv69r9h";
};
buildInputs = [ glibcLocales ];
checkInputs = [ nose pygments ];