##// END OF EJS Templates
nix: package ipython with readline for autocomplete, fixes #4005
marcink -
r164:d6870187 default
parent child Browse files
Show More
@@ -29,6 +29,12 b' self: super: {'
29 ];
29 ];
30 });
30 });
31
31
32 ipython = super.ipython.override (attrs: {
33 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
34 self.gnureadline
35 ];
36 });
37
32 kombu = super.kombu.override (attrs: {
38 kombu = super.kombu.override (attrs: {
33 # The current version of kombu needs some patching to work with the
39 # The current version of kombu needs some patching to work with the
34 # other libs. Should be removed once we update celery and kombu.
40 # other libs. Should be removed once we update celery and kombu.
General Comments 0
You need to be logged in to leave comments. Login now