Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / salmon-mail / default.nix
blobd213026bd5b8661c6806cf71150cd351501ef24c
1 { stdenv, lib, buildPythonPackage, fetchPypi, dnspython, chardet, lmtpd
2 , python-daemon, six, jinja2, mock, click }:
4 buildPythonPackage rec {
5   pname = "salmon-mail";
6   version = "3.2.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "0q2m6xri1b7qv46rqpv2qfdgk2jvswj8lpaacnxwjna3m685fhfx";
11   };
13   nativeCheckInputs = [ jinja2 mock ];
14   propagatedBuildInputs = [ chardet dnspython lmtpd python-daemon six click ];
16   # Darwin tests fail without this. See:
17   # https://github.com/NixOS/nixpkgs/pull/82166#discussion_r399909846
18   __darwinAllowLocalNetworking = true;
20   # The tests use salmon executable installed by salmon itself so we need to add
21   # that to PATH
22   checkPhase = ''
23     # tests fail and pytest is not supported
24     rm tests/server_tests.py
25     PATH=$out/bin:$PATH python setup.py test
26   '';
28   meta = with lib; {
29     broken = stdenv.isDarwin;
30     homepage = "https://salmon-mail.readthedocs.org/";
31     description = "Pythonic mail application server";
32     license = licenses.gpl3Only;
33     maintainers = with maintainers; [ jluttine ];
34   };