1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-22 06:05:13 +00:00
nixpkgs/pkgs/development/python-modules/djmail/default.nix

25 lines
781 B
Nix
Raw Normal View History

2017-08-31 20:27:20 +01:00
{ lib, buildPythonPackage, fetchPypi,
celery, django, psycopg2
}:
buildPythonPackage rec {
pname = "djmail";
2018-06-12 17:47:00 +01:00
version = "1.1.0";
2017-08-31 20:27:20 +01:00
meta = {
description = "Simple, powerfull and nonobstructive django email middleware.";
homepage = https://github.com/bameda/djmail;
license = lib.licenses.bsd3;
};
src = fetchPypi {
inherit pname version;
2018-06-12 17:47:00 +01:00
sha256 = "87d2a8b4bdf67ae9b312e127ccc873a53116cf297ec786460d782ce82eaa76b5";
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;
}