aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/lmtpd/default.nix
blob: e9dd42219eb9490c3acf2f881d6478564b15d45c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "lmtpd";
  version = "6.2.0";

  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 ];
  };
}