about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/aiosmtpd/default.nix
blob: c204261644c5d7197d7e7d0c6473759fad781dd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, isPy3k, fetchFromGitHub, buildPythonPackage
, attrs, atpublic }:

buildPythonPackage rec {
  pname = "aiosmtpd";
  version = "1.4.2";
  disabled = !isPy3k;

  # Release not published to Pypi
  src = fetchFromGitHub {
    owner = "aio-libs";
    repo = pname;
    rev = version;
    sha256 = "0hbpyns1j1fpvpj7gyb8cz359j7l4hzfqbig74xp4xih59sih0wj";
  };

  propagatedBuildInputs = [
    atpublic attrs
  ];

  # Tests need network access
  doCheck = false;

  meta = with lib; {
    homepage = "https://aiosmtpd.readthedocs.io/en/latest/";
    description = "Asyncio based SMTP server";
    longDescription = ''
      This is a server for SMTP and related protocols, similar in utility to the
      standard library's smtpd.py module, but rewritten to be based on asyncio for
      Python 3.
    '';
    license = licenses.asl20;
    maintainers = with maintainers; [ eadwu ];
  };
}