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