1 { lib, buildPythonPackage, fetchPypi
17 buildPythonPackage rec {
18 pname = "graphite-web";
22 inherit pname version;
23 sha256 = "b3cb3b9affe1b9e3777aab046416b3d545390ceea4d35d55c753b1e4732eaad0";
27 ./update-django-tagging.patch
30 propagatedBuildInputs = [
46 # Carbon-s default installation is /opt/graphite. This env variable ensures
47 # carbon is installed as a regular python module.
48 GRAPHITE_NO_PREFIX="True";
51 substituteInPlace webapp/graphite/settings.py \
52 --replace "join(WEBAPP_DIR, 'content')" "join('$out', 'webapp', 'content')"
55 pythonImportsCheck = [ "graphite" ];
58 homepage = "http://graphiteapp.org/";
59 description = "Enterprise scalable realtime graphing";
60 maintainers = with maintainers; [ offline basvandijk ];
61 license = licenses.asl20;