summary refs log tree commit diff
path: root/pkgs/development/python-modules/graphite-web/default.nix
blob: 88e3118d4561bcd9789beb4ddc8fa90563b838bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, which
, django, django_tagging, whisper, pycairo, cairocffi, ldap, memcached, pytz, urllib3, scandir
}:
if django.version != "1.8.19"
|| django_tagging.version != "0.4.3"
then throw "graphite-web should be build with django_1_8 and django_tagging_0_4_3"
else buildPythonPackage rec {
  pname = "graphite-web";
  version = "1.1.6";

  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "f4c293008ad588456397cd125cdad7f47f4bab5b6dd82b5fb69f5467e7346a2a";
  };

  propagatedBuildInputs = [
    django django_tagging whisper pycairo cairocffi
    ldap memcached pytz urllib3 scandir
  ];

  postInstall = ''
    wrapProgram $out/bin/run-graphite-devel-server.py \
      --prefix PATH : ${which}/bin
  '';

  preConfigure = ''
    # graphite is configured by storing a local_settings.py file inside the
    # graphite python package. Since that package is stored in the immutable
    # Nix store we can't modify it. So how do we configure graphite?
    #
    # First of all we rename "graphite.local_settings" to
    # "graphite_local_settings" so that the settings are not looked up in the
    # graphite package anymore. Secondly we place a directory containing a
    # graphite_local_settings.py on the PYTHONPATH in the graphite module
    # <nixpkgs/nixos/modules/services/monitoring/graphite.nix>.
    substituteInPlace webapp/graphite/settings.py \
      --replace "graphite.local_settings" " graphite_local_settings"

    substituteInPlace webapp/graphite/settings.py \
      --replace "join(WEBAPP_DIR, 'content')" "join('$out', 'webapp', 'content')"
  '';

  # error: invalid command 'test'
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = http://graphite.wikidot.com/;
    description = "Enterprise scalable realtime graphing";
    maintainers = with maintainers; [ offline basvandijk ];
    license = licenses.asl20;
  };
}