109c7f95ca
Python 2 support was dropped on
3546d4660f
ZHF: #97479
https://hydra.nixos.org/build/127641301
21 lines
519 B
Nix
21 lines
519 B
Nix
{ buildPythonPackage, fetchPypi, isPy3k, stdenv }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lmtpd";
|
|
version = "6.2.0";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2c6825d2ffa1de099440411a742f58e1b3e8deeb3345adcfd4c2c38d4baf62b3";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/moggers87/lmtpd";
|
|
description = "LMTP counterpart to smtpd in the Python standard library";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
};
|
|
}
|