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