mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
pythonPackages.dj-email-url: init at 0.1.0
This commit is contained in:
parent
012404a858
commit
758f4ce2b8
29
pkgs/development/python-modules/dj-email-url/default.nix
Normal file
29
pkgs/development/python-modules/dj-email-url/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user