Skip to content

Commit

Permalink
python3.pkgs.djmail: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Jul 14, 2018
1 parent db9e9ed commit bcd0483
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/development/python-modules/djmail/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{ lib, buildPythonPackage, fetchPypi,
celery, django, psycopg2
{ lib, buildPythonPackage, fetchPypi
, glibcLocales
, celery, django, psycopg2
}:

buildPythonPackage rec {
pname = "djmail";
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;
};
Expand All @@ -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.
Expand Down

0 comments on commit bcd0483

Please sign in to comment.