pythonPackages.graphite-web: update dependencies

authored by

Robert Schütz and committed by
Frederik Rietdijk
28876dae 380cb1e9

+30 -4
+30 -4
pkgs/development/python-modules/graphite-web/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , django, django_tagging, whisper, pycairo, cairocffi, ldap, memcached, pytz, urllib3, scandir 3 }: 4 buildPythonPackage rec { 5 pname = "graphite-web"; 6 version = "1.1.7"; ··· 15 ]; 16 17 propagatedBuildInputs = [ 18 - django django_tagging whisper pycairo cairocffi 19 - ldap memcached pytz urllib3 scandir 20 ]; 21 22 # Carbon-s default installation is /opt/graphite. This env variable ensures ··· 27 substituteInPlace webapp/graphite/settings.py \ 28 --replace "join(WEBAPP_DIR, 'content')" "join('$out', 'webapp', 'content')" 29 ''; 30 31 meta = with lib; { 32 homepage = "http://graphiteapp.org/";
··· 1 + { lib, buildPythonPackage, fetchPypi 2 + , django 3 + , memcached 4 + , txamqp 5 + , django_tagging 6 + , gunicorn 7 + , pytz 8 + , pyparsing 9 + , cairocffi 10 + , whisper 11 + , whitenoise 12 + , scandir 13 + , urllib3 14 + , six 15 }: 16 + 17 buildPythonPackage rec { 18 pname = "graphite-web"; 19 version = "1.1.7"; ··· 28 ]; 29 30 propagatedBuildInputs = [ 31 + django 32 + memcached 33 + txamqp 34 + django_tagging 35 + gunicorn 36 + pytz 37 + pyparsing 38 + cairocffi 39 + whisper 40 + whitenoise 41 + scandir 42 + urllib3 43 + six 44 ]; 45 46 # Carbon-s default installation is /opt/graphite. This env variable ensures ··· 51 substituteInPlace webapp/graphite/settings.py \ 52 --replace "join(WEBAPP_DIR, 'content')" "join('$out', 'webapp', 'content')" 53 ''; 54 + 55 + pythonImportsCheck = [ "graphite" ]; 56 57 meta = with lib; { 58 homepage = "http://graphiteapp.org/";