nixpkgs/pkgs/development/python-modules/salmon-mail/default.nix

29 lines
808 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, nose, dnspython
2017-11-27 07:50:29 +01:00
, chardet, lmtpd, pythondaemon, six, jinja2, mock }:
buildPythonPackage rec {
pname = "salmon-mail";
2018-06-12 18:47:06 +02:00
version = "3.0.1";
2017-11-27 07:50:29 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:06 +02:00
sha256 = "452557172901d6227a325bbc72fcf61002a53c2342d935457b729303dce71f7e";
2017-11-27 07:50:29 +01:00
};
checkInputs = [ nose jinja2 mock ];
propagatedBuildInputs = [ chardet dnspython lmtpd pythondaemon six ];
2017-11-27 07:50:29 +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 07:50:29 +01:00
meta = with stdenv.lib; {
homepage = http://salmon-mail.readthedocs.org/;
description = "Pythonic mail application server";
license = licenses.gpl3;
maintainers = with maintainers; [ jluttine ];
};
}