nixos/bepasty: switch to python3Packages to match bepasty package

I think the bepasty nixos service has been broken since c539c02, since
bepasty changed from using python2.7 to python3.7.  This updates the
nixos module to refer to the matching python version.
This commit is contained in:
kyren 2019-03-06 22:18:59 -05:00
parent 0baa7c90c6
commit 4bf1d8c67d

View File

@ -2,10 +2,10 @@
with 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.services.bepasty;
user = "bepasty";
group = "bepasty";