gunicorn: add 19.x branch for python2.7 support
The nixos/moinmoin module uses gunicorn, however the 20.0 version dropped python2 support which broke the module as there's no python3 port planned for moinmoin: http://moinmo.in/Python3
This commit is contained in:
@@ -3802,7 +3802,10 @@ in {
|
||||
|
||||
rebulk = callPackage ../development/python-modules/rebulk { };
|
||||
|
||||
gunicorn = callPackage ../development/python-modules/gunicorn { };
|
||||
gunicorn = if isPy27 then
|
||||
callPackage ../development/python-modules/gunicorn/19.nix { }
|
||||
else
|
||||
callPackage ../development/python-modules/gunicorn { };
|
||||
|
||||
hawkauthlib = callPackage ../development/python-modules/hawkauthlib { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user