nixpkgs/pkgs/development/python-modules/waitress-django/default.nix
Bas van Dijk 5b8ff5ed49 graphite: 0.9.15 -> 1.0.2
Fixes: #29961

Also added the option:

  services.graphite.web.extraConfig

for configuring graphite_web.
2017-10-08 03:03:22 +02:00

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