diff options
author | lassulus <lassulus@lassul.us> | 2019-04-13 11:30:43 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-04-13 11:30:43 +0200 |
commit | 6c28491768cc6b86c69dd732544a3dbb0801faf4 (patch) | |
tree | 6e93ca62a4c3b1578cada9905db8849f227e4da4 /krebs | |
parent | 72cd01d104bb61b5a5e28c2c10e0bd2bd55ce681 (diff) |
bepasty: use python3
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/bepasty-server.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/krebs/3modules/bepasty-server.nix b/krebs/3modules/bepasty-server.nix index e12367b7c..0f00cd381 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 = { |