pythonPackages.djmail: init at 1.0.1

This commit is contained in:
betaboon 2017-08-31 21:27:20 +02:00 committed by Frederik Rietdijk
parent d18f4dcba3
commit 3ac8eed5fd
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi,
celery, django, psycopg2
}:
buildPythonPackage rec {
pname = "djmail";
name = "${pname}-${version}";
version = "1.0.1";
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 = "1827i9qcn1ki09i5pg0lmar7cxjv18avh76x1n20947p1cimf3rp";
};
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;
}

View file

@ -8901,6 +8901,8 @@ in {
};
};
djmail = callPackage ../development/python-modules/djmail { };
pillowfight = buildPythonPackage rec {
name = "pillowfight-${version}";
version = "0.2";