3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.lmtpd: init at 6.0.0

This commit is contained in:
Jaakko Luttinen 2017-11-27 08:49:33 +02:00
parent b8f7027360
commit 93305ee919
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi, fetchFromGitHub }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "lmtpd";
version = "6.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "192d1j9lj9i6f4llwg51817am4jj8pjvlqmkx03spmsay6f832bm";
};
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 ];
};
}

View file

@ -192,6 +192,8 @@ in {
intelhex = callPackage ../development/python-modules/intelhex { };
lmtpd = callPackage ../development/python-modules/lmtpd { };
mpi4py = callPackage ../development/python-modules/mpi4py {
mpi = pkgs.openmpi;
};