Merge pull request #57006 from kyren/bepasty-fix

nixos/bepasty: switch to python3Packages to match bepasty package
This commit is contained in:
Silvan Mosberger 2019-03-08 01:54:48 +01:00 committed by GitHub
commit 0036842e8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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";