pythonPackages.graphite-web: update dependencies

This commit is contained in:
Robert Schütz 2021-03-20 20:23:01 +01:00 committed by Frederik Rietdijk
parent 380cb1e995
commit 28876daed3

View File

@ -1,6 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k
, django, django_tagging, whisper, pycairo, cairocffi, ldap, memcached, pytz, urllib3, scandir
{ lib, buildPythonPackage, fetchPypi
, django
, memcached
, txamqp
, django_tagging
, gunicorn
, pytz
, pyparsing
, cairocffi
, whisper
, whitenoise
, scandir
, urllib3
, six
}:
buildPythonPackage rec {
pname = "graphite-web";
version = "1.1.7";
@ -15,8 +28,19 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
django django_tagging whisper pycairo cairocffi
ldap memcached pytz urllib3 scandir
django
memcached
txamqp
django_tagging
gunicorn
pytz
pyparsing
cairocffi
whisper
whitenoise
scandir
urllib3
six
];
# Carbon-s default installation is /opt/graphite. This env variable ensures
@ -28,6 +52,8 @@ buildPythonPackage rec {
--replace "join(WEBAPP_DIR, 'content')" "join('$out', 'webapp', 'content')"
'';
pythonImportsCheck = [ "graphite" ];
meta = with lib; {
homepage = "http://graphiteapp.org/";
description = "Enterprise scalable realtime graphing";