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