5b8ff5ed49
Fixes: #29961 Also added the option: services.graphite.web.extraConfig for configuring graphite_web.
9 lines
231 B
Nix
9 lines
231 B
Nix
{ buildPythonPackage, django_1_8, waitress }:
|
|
buildPythonPackage {
|
|
name = "waitress-django";
|
|
src = ./.;
|
|
pythonPath = [ django_1_8 waitress ];
|
|
doCheck = false;
|
|
meta.description = "A waitress WSGI server serving django";
|
|
}
|