1{ buildPythonPackage, fetchPypi, isPy3k, lib }:
2
3buildPythonPackage rec {
4 pname = "lmtpd";
5 version = "6.2.0";
6
7 disabled = !isPy3k;
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "2c6825d2ffa1de099440411a742f58e1b3e8deeb3345adcfd4c2c38d4baf62b3";
12 };
13
14 meta = with lib; {
15 homepage = "https://github.com/moggers87/lmtpd";
16 description = "LMTP counterpart to smtpd in the Python standard library";
17 license = licenses.mit;
18 maintainers = with maintainers; [ jluttine ];
19 };
20}