1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/lmtpd/default.nix

19 lines
486 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
2017-11-27 06:49:33 +00:00
buildPythonPackage rec {
pname = "lmtpd";
2019-12-19 19:31:15 +00:00
version = "6.1.0";
2017-11-27 06:49:33 +00:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:15 +00:00
sha256 = "256e23a3292818ecccf9a76ef52e0064c6f7e1f8602904e15337c8917ed0fafe";
2017-11-27 06:49:33 +00:00
};
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 ];
};
}