2021-01-25 09:26:54 +01:00
|
|
|
{ buildPythonPackage, fetchPypi, isPy3k, lib }:
|
2017-11-27 07:49:33 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "lmtpd";
|
2020-08-16 19:31:07 +02:00
|
|
|
version = "6.2.0";
|
2017-11-27 07:49:33 +01:00
|
|
|
|
2020-09-27 11:16:55 +02:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2017-11-27 07:49:33 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 19:31:07 +02:00
|
|
|
sha256 = "2c6825d2ffa1de099440411a742f58e1b3e8deeb3345adcfd4c2c38d4baf62b3";
|
2017-11-27 07:49:33 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/moggers87/lmtpd";
|
2017-11-27 07:49:33 +01:00
|
|
|
description = "LMTP counterpart to smtpd in the Python standard library";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jluttine ];
|
|
|
|
};
|
|
|
|
}
|