python.pkgs.ipython: add missing typing dependency
This commit is contained in:
parent
4d4e70d071
commit
1806559d05
@ -17,6 +17,7 @@
|
||||
, prompt_toolkit
|
||||
, pexpect
|
||||
, appnope
|
||||
, typing
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -45,7 +46,8 @@ buildPythonPackage rec {
|
||||
traitlets
|
||||
prompt_toolkit
|
||||
pexpect
|
||||
] ++ lib.optionals stdenv.isDarwin [appnope];
|
||||
] ++ lib.optionals stdenv.isDarwin [appnope]
|
||||
++ lib.optionals (pythonOlder "3.5") [ typing ];
|
||||
|
||||
LC_ALL="en_US.UTF-8";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user