Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 18 lines 486 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "lmtpd"; 5 version = "6.1.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "256e23a3292818ecccf9a76ef52e0064c6f7e1f8602904e15337c8917ed0fafe"; 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}