# HG changeset patch # User Marcin Kuzminski # Date 2016-06-09 17:38:22 # Node ID d68701878fa119f94c7af6d6a259d937e21bb0ac # Parent 7160ae178bc7eaeb10cfc1bb19e6cdf66f2a359c nix: package ipython with readline for autocomplete, fixes #4005 diff --git a/pkgs/python-packages-overrides.nix b/pkgs/python-packages-overrides.nix --- a/pkgs/python-packages-overrides.nix +++ b/pkgs/python-packages-overrides.nix @@ -29,6 +29,12 @@ self: super: { ]; }); + ipython = super.ipython.override (attrs: { + propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ + self.gnureadline + ]; + }); + kombu = super.kombu.override (attrs: { # The current version of kombu needs some patching to work with the # other libs. Should be removed once we update celery and kombu.