summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-06-16 03:34:41 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-06-16 03:34:42 +0200
commit368e381d1f0fc463fb43b2868c8f48772a4b97e0 (patch)
tree19b3f28e055be1f4d3f0a969ee7fe69bfd627043
parent82ec18463dad6997eb6a66225f0c8017e867b105 (diff)
downloadnixpkgs-368e381d1f0fc463fb43b2868c8f48772a4b97e0.tar
nixpkgs-368e381d1f0fc463fb43b2868c8f48772a4b97e0.tar.gz
nixpkgs-368e381d1f0fc463fb43b2868c8f48772a4b97e0.tar.bz2
nixpkgs-368e381d1f0fc463fb43b2868c8f48772a4b97e0.tar.lz
nixpkgs-368e381d1f0fc463fb43b2868c8f48772a4b97e0.tar.xz
nixpkgs-368e381d1f0fc463fb43b2868c8f48772a4b97e0.tar.zst
nixpkgs-368e381d1f0fc463fb43b2868c8f48772a4b97e0.zip
python-packages: prompt_toolkit -> 0.40
Fixes:
- Fix in output_screen_diff: reset correctly.
- Ignore flush errors in vt100_output.
- Implemented <num>gg Vi key binding.
- Bug fix in the renderer when the style changes.

New features:
- TokenListControl can now display the cursor somewhere.
- Added SwitchableValidator class.
- print_tokens function added.
- get_style argument for Application added.
- KeyBindingManager got an enable_all argument.

Backwards incompatible changes:
- history_search is now a SimpleFilter instance.
-rw-r--r--pkgs/top-level/python-packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index f80df2edfcb..7e01bda11c8 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -8868,11 +8868,11 @@ let
 
   prompt_toolkit = buildPythonPackage rec {
     name = "prompt_toolkit-${version}";
-    version = "0.39";
+    version = "0.40";
 
     src = pkgs.fetchurl {
+      sha256 = "0zyp2zpbckpdhapijvg7jwli71ilhp02awn99ly70q3l1f44m9dj";
       url = "https://pypi.python.org/packages/source/p/prompt_toolkit/${name}.tar.gz";
-      sha256 = "1046fhgqd1171n8xyzcxwzcxgkcwa77r08g7iih8k5x7z59l94lb";
     };
 
     buildInputs = with self; [ jedi ipython pygments ];