pythonPackages.ipython: fix in order for ipykernel tests to pass

This commit is contained in:
Frederik Rietdijk 2019-06-15 10:13:45 +02:00
parent ad9a4d0d5e
commit 8d93e63a53

View file

@ -17,6 +17,7 @@
, pexpect
, appnope
, backcall
, fetchpatch
}:
buildPythonPackage rec {
@ -33,6 +34,13 @@ buildPythonPackage rec {
substituteInPlace setup.py --replace "'gnureadline'" " "
'';
patches = [
(fetchpatch {
url = "https://github.com/ipython/ipython/commit/e1b53e9ef91a43b9e275bb9e48b4253218375d87.patch";
sha256 = "sha256:0q7zsgalwxss6aikhakbdkvvz0g4ac4sa3ncrklm74ksqh56rsgb";
})
];
buildInputs = [ glibcLocales ];
checkInputs = [ nose pygments ];