pythonPackages.ipython: fix in order for ipykernel tests to pass
This commit is contained in:
parent
ad9a4d0d5e
commit
8d93e63a53
1 changed files with 8 additions and 0 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue