summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2019-04-13 21:54:15 +0200
committerlassulus <lassulus@lassul.us>2019-04-13 21:54:15 +0200
commit4ac7399b75e57bb33a10ed647c34ed64c7bc3877 (patch)
tree9c9715609f36cc2fd0fdaccf1b8f1e2343e810c6
parent167f19018d856d233cd405612e215869ffc925b4 (diff)
bepasty-server: use python2 again
-rw-r--r--krebs/3modules/bepasty-server.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/krebs/3modules/bepasty-server.nix b/krebs/3modules/bepasty-server.nix
index 0f00cd38..94a50952 100644
--- a/krebs/3modules/bepasty-server.nix
+++ b/krebs/3modules/bepasty-server.nix
@@ -2,10 +2,10 @@
with import <stockholm/lib>;
let
- gunicorn = pkgs.python3Packages.gunicorn;
- bepasty = pkgs.bepasty;
- gevent = pkgs.python3Packages.gevent;
- python = pkgs.python3Packages.python;
+ gunicorn = pkgs.python27Packages.gunicorn;
+ bepasty = pkgs.bepasty.override { python3Packages = pkgs.python27Packages; };
+ gevent = pkgs.python27Packages.gevent;
+ python = pkgs.python27Packages.python;
cfg = config.krebs.bepasty;
out = {