mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
pythonPackages.djmail: init at 1.0.1
This commit is contained in:
parent
d18f4dcba3
commit
3ac8eed5fd
25
pkgs/development/python-modules/djmail/default.nix
Normal file
25
pkgs/development/python-modules/djmail/default.nix
Normal 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;
|
||||||
|
}
|
@ -8901,6 +8901,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
djmail = callPackage ../development/python-modules/djmail { };
|
||||||
|
|
||||||
pillowfight = buildPythonPackage rec {
|
pillowfight = buildPythonPackage rec {
|
||||||
name = "pillowfight-${version}";
|
name = "pillowfight-${version}";
|
||||||
version = "0.2";
|
version = "0.2";
|
||||||
|
Loading…
Reference in New Issue
Block a user