pythonPackages.django-contrib-comments: add six dep

This commit is contained in:
Jonathan Ringer 2019-12-24 09:21:47 -08:00 committed by Frederik Rietdijk
parent 0d663fc511
commit dd2a59047f

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, django , django
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,7 +14,7 @@ buildPythonPackage rec {
sha256 = "d1232bade3094de07dcc205fc833204384e71ba9d30caadcb5bb2882ce8e8d31"; sha256 = "d1232bade3094de07dcc205fc833204384e71ba9d30caadcb5bb2882ce8e8d31";
}; };
propagatedBuildInputs = [ django ]; propagatedBuildInputs = [ django six ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://github.com/django/django-contrib-comments; homepage = https://github.com/django/django-contrib-comments;