forked from mirrors/nixpkgs
almir: correctly set PYTHONPATH
This commit is contained in:
parent
d33544129f
commit
917498001f
|
@ -154,7 +154,8 @@ in {
|
||||||
description = "Almir web app";
|
description = "Almir web app";
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
path = [ pkgs.pythonPackages.almir ];
|
path = [ pkgs.pythonPackages.almir ];
|
||||||
serviceConfig.ExecStart = "${pkgs.pythonPackages.almir}/bin/pserve ${productionini}";
|
environment.PYTHONPATH = "${pkgs.pythonPackages.almir}/lib/${pkgs.pythonPackages.python.libPrefix}/site-packages";
|
||||||
|
serviceConfig.ExecStart = "${pkgs.pythonPackages.pyramid}/bin/pserve ${productionini}";
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.pythonPackages.almir ];
|
environment.systemPackages = [ pkgs.pythonPackages.almir ];
|
||||||
|
|
Loading…
Reference in a new issue