pythonPackages.dj-email-url: init at 0.1.0

This commit is contained in:
Chris Ostrouchov 2018-10-25 15:22:12 -04:00 committed by Frederik Rietdijk
parent 012404a858
commit 758f4ce2b8
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
version = "0.1.0";
pname = "dj-email-url";
src = fetchPypi {
inherit pname version;
sha256 = "84f32673156f58d740a14cab09f04ca92a65b2c8881b60e31e09e67d7853e544";
};
checkPhase = ''
${python.interpreter} test_dj_email_url.py
'';
# tests not included with pypi release
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/migonzalvar/dj-email-url;
description = "Use an URL to configure email backend settings in your Django Application";
license = licenses.bsd0;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -2128,6 +2128,8 @@ in {
dj-database-url = callPackage ../development/python-modules/dj-database-url { };
dj-email-url = callPackage ../development/python-modules/dj-email-url { };
dj-search-url = callPackage ../development/python-modules/dj-search-url { };
djmail = callPackage ../development/python-modules/djmail { };