python.pkgs.ipython: add missing typing dependency
This commit is contained in:
@@ -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";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user