mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
5b8ff5ed49
Fixes: #29961 Also added the option: services.graphite.web.extraConfig for configuring graphite_web.
8 lines
231 B
Nix
8 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";
|
|
}
|