nix: package ipython with readline for autocomplete, fixes #4005

This commit is contained in:
Marcin Kuzminski 2016-06-09 19:38:22 +02:00
parent fc0551b617
commit bcdff04d24

View file

@ -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.