python3.pkgs.djmail: fix build

This commit is contained in:
Robert Schütz 2018-07-14 13:44:57 +02:00
parent db9e9ed057
commit bcd0483528

View file

@ -1,5 +1,6 @@
{ lib, buildPythonPackage, fetchPypi,
celery, django, psycopg2
{ lib, buildPythonPackage, fetchPypi
, glibcLocales
, celery, django, psycopg2
}:
buildPythonPackage rec {
@ -7,7 +8,7 @@ buildPythonPackage rec {
version = "1.1.0";
meta = {
description = "Simple, powerfull and nonobstructive django email middleware.";
description = "Simple, powerfull and nonobstructive django email middleware";
homepage = https://github.com/bameda/djmail;
license = lib.licenses.bsd3;
};
@ -17,6 +18,10 @@ buildPythonPackage rec {
sha256 = "87d2a8b4bdf67ae9b312e127ccc873a53116cf297ec786460d782ce82eaa76b5";
};
nativeBuildInputs = [ glibcLocales ];
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [ celery django psycopg2 ];
# django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.