nixpkgs/pkgs/development/python-modules/djmail/default.nix

30 lines
864 B
Nix
Raw Normal View History

2018-07-14 12:44:57 +01:00
{ lib, buildPythonPackage, fetchPypi
, glibcLocales
, celery, django, psycopg2
2017-08-31 20:27:20 +01:00
}:
buildPythonPackage rec {
pname = "djmail";
2020-06-06 07:47:05 +01:00
version = "2.0.0";
2017-08-31 20:27:20 +01:00
meta = {
2018-07-14 12:44:57 +01:00
description = "Simple, powerfull and nonobstructive django email middleware";
homepage = "https://github.com/bameda/djmail";
2017-08-31 20:27:20 +01:00
license = lib.licenses.bsd3;
};
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:05 +01:00
sha256 = "cf3ce7626305d218a8bf2b6a219266ef8061aceeefc1c70a54170f4105465202";
2017-08-31 20:27:20 +01:00
};
2018-07-14 12:44:57 +01:00
nativeBuildInputs = [ glibcLocales ];
LC_ALL = "en_US.UTF-8";
2017-08-31 20:27:20 +01:00
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;
}