about summary refs log tree commit diff
path: root/pkgs/development/python-modules/djmail/default.nix
blob: 432e09e41aeee5e596e4addb9f4dc19d35119bca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  lib,
  buildPythonPackage,
  fetchPypi,
  glibcLocales,
  celery,
  django,
  psycopg2,
}:

buildPythonPackage rec {
  pname = "djmail";
  version = "2.0.0";
  format = "setuptools";

  meta = {
    description = "Simple, powerfull and nonobstructive django email middleware";
    homepage = "https://github.com/bameda/djmail";
    license = lib.licenses.bsd3;
  };

  src = fetchPypi {
    inherit pname version;
    sha256 = "cf3ce7626305d218a8bf2b6a219266ef8061aceeefc1c70a54170f4105465202";
  };

  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.
  doCheck = false;
}