2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, nose, dnspython
|
2018-10-05 02:51:46 +01:00
|
|
|
, chardet, lmtpd, python-daemon, six, jinja2, mock }:
|
2017-11-27 06:50:29 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-01-11 00:52:45 +00:00
|
|
|
pname = "salmon-mail";
|
2019-05-30 10:47:50 +01:00
|
|
|
version = "3.1.1";
|
2017-11-27 06:50:29 +00:00
|
|
|
|
2018-01-11 00:52:45 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-30 10:47:50 +01:00
|
|
|
sha256 = "0ddd9nwdmiibk3jaampznm8nai5b7zalp0f8c65l71674300bqnw";
|
2017-11-27 06:50:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ nose jinja2 mock ];
|
2018-10-05 02:51:46 +01:00
|
|
|
propagatedBuildInputs = [ chardet dnspython lmtpd python-daemon six ];
|
2017-11-27 06:50:29 +00:00
|
|
|
|
2018-06-29 12:20:38 +01:00
|
|
|
# The tests use salmon executable installed by salmon itself so we need to add
|
|
|
|
# that to PATH
|
|
|
|
checkPhase = ''
|
|
|
|
PATH=$out/bin:$PATH nosetests .
|
|
|
|
'';
|
|
|
|
|
2017-11-27 06:50:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-04-22 09:24:21 +01:00
|
|
|
homepage = https://salmon-mail.readthedocs.org/;
|
2017-11-27 06:50:29 +00:00
|
|
|
description = "Pythonic mail application server";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jluttine ];
|
|
|
|
};
|
|
|
|
}
|