summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipython/5.nix
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-01-23 16:10:21 +0100
committerGitHub <noreply@github.com>2020-01-23 16:10:21 +0100
commit7db53cc312538bbc3c6412970796f1f7cc49b77a (patch)
tree751c3e810a7430ad30a054fe6fb9152323beb5e5 /pkgs/development/python-modules/ipython/5.nix
parent944236a0f1c846933f6c3897b35306ce1307cf4f (diff)
parent0811a69fef6e42aa40d859526f0ce9d667d36f52 (diff)
downloadnixpkgs-7db53cc312538bbc3c6412970796f1f7cc49b77a.tar
nixpkgs-7db53cc312538bbc3c6412970796f1f7cc49b77a.tar.gz
nixpkgs-7db53cc312538bbc3c6412970796f1f7cc49b77a.tar.bz2
nixpkgs-7db53cc312538bbc3c6412970796f1f7cc49b77a.tar.lz
nixpkgs-7db53cc312538bbc3c6412970796f1f7cc49b77a.tar.xz
nixpkgs-7db53cc312538bbc3c6412970796f1f7cc49b77a.tar.zst
nixpkgs-7db53cc312538bbc3c6412970796f1f7cc49b77a.zip
Merge pull request #78348 from timokau/pygments-lexer-fix
python2.pkgs.ipython, python2.pkgs.sphinx: use proper python2 lexer
Diffstat (limited to 'pkgs/development/python-modules/ipython/5.nix')
-rw-r--r--pkgs/development/python-modules/ipython/5.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ipython/5.nix b/pkgs/development/python-modules/ipython/5.nix
index 15e7d00bcec..dd0c97fc3c5 100644
--- a/pkgs/development/python-modules/ipython/5.nix
+++ b/pkgs/development/python-modules/ipython/5.nix
@@ -2,6 +2,7 @@
 , stdenv
 , buildPythonPackage
 , fetchPypi
+, fetchpatch
 # Build dependencies
 , glibcLocales
 # Test dependencies
@@ -36,6 +37,15 @@ buildPythonPackage rec {
     substituteInPlace setup.py --replace "'gnureadline'" " "
   '';
 
+  patches = [
+    # Use the proper pygments lexer for python2 (https://github.com/ipython/ipython/pull/12095)
+    (fetchpatch {
+      name = "python2-lexer.patch";
+      url = "https://github.com/ipython/ipython/pull/12095/commits/8805293b5e4bce9150cc2ad9c5d6d984849ae447.patch";
+      sha256 = "16p4gl7a49v76w33j39ih7yspy6x2d14p9bh4wdpg9cafhw9nbc0";
+    })
+  ];
+
   buildInputs = [ glibcLocales ];
 
   checkInputs = [ nose pygments testpath ] ++ lib.optional isPy27 mock;