ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / lmtpd / default.nix
blobbb27c29173b1e897e8e99db5c4577d08e9ecb728
1 { buildPythonPackage, fetchPypi, isPy3k, lib }:
3 buildPythonPackage rec {
4   pname = "lmtpd";
5   version = "6.2.0";
7   disabled = !isPy3k;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "2c6825d2ffa1de099440411a742f58e1b3e8deeb3345adcfd4c2c38d4baf62b3";
12   };
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   };