Skip to content

Commit

Permalink
python.pkgs.ipython: add missing typing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Nov 11, 2017
1 parent 4d4e70d commit 1806559
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/ipython/default.nix
Expand Up @@ -17,6 +17,7 @@
, prompt_toolkit
, pexpect
, appnope
, typing
}:

buildPythonPackage rec {
Expand Down Expand Up @@ -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";

Expand Down

0 comments on commit 1806559

Please sign in to comment.