summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2019-04-13 11:30:43 +0200
committerlassulus <lassulus@lassul.us>2019-04-13 11:30:43 +0200
commit6c28491768cc6b86c69dd732544a3dbb0801faf4 (patch)
tree6e93ca62a4c3b1578cada9905db8849f227e4da4 /krebs
parent72cd01d104bb61b5a5e28c2c10e0bd2bd55ce681 (diff)
bepasty: use python3
Diffstat (limited to 'krebs')
-rw-r--r--krebs/3modules/bepasty-server.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/krebs/3modules/bepasty-server.nix b/krebs/3modules/bepasty-server.nix
index e12367b7..0f00cd38 100644
--- a/krebs/3modules/bepasty-server.nix
+++ b/krebs/3modules/bepasty-server.nix
@@ -2,10 +2,10 @@
with import <stockholm/lib>;
let
- gunicorn = pkgs.pythonPackages.gunicorn;
+ gunicorn = pkgs.python3Packages.gunicorn;
bepasty = pkgs.bepasty;
- gevent = pkgs.pythonPackages.gevent;
- python = pkgs.pythonPackages.python;
+ gevent = pkgs.python3Packages.gevent;
+ python = pkgs.python3Packages.python;
cfg = config.krebs.bepasty;
out = {