about summary refs log tree commit diff
path: root/pkgs/development/python-modules/lmtpd
diff options
context:
space:
mode:
authorJaakko Luttinen <jaakko.luttinen@iki.fi>2017-11-27 08:49:33 +0200
committerJaakko Luttinen <jaakko.luttinen@iki.fi>2017-12-06 09:41:13 +0200
commit93305ee919871ea9c1110c39761c71f2e8471fa7 (patch)
treeccf996aea3cfde6e900f16344d7872bf49a40db7 /pkgs/development/python-modules/lmtpd
parentb8f7027360855faee9d72956092be2e030a12a5f (diff)
downloadnixlib-93305ee919871ea9c1110c39761c71f2e8471fa7.tar
nixlib-93305ee919871ea9c1110c39761c71f2e8471fa7.tar.gz
nixlib-93305ee919871ea9c1110c39761c71f2e8471fa7.tar.bz2
nixlib-93305ee919871ea9c1110c39761c71f2e8471fa7.tar.lz
nixlib-93305ee919871ea9c1110c39761c71f2e8471fa7.tar.xz
nixlib-93305ee919871ea9c1110c39761c71f2e8471fa7.tar.zst
nixlib-93305ee919871ea9c1110c39761c71f2e8471fa7.zip
pythonPackages.lmtpd: init at 6.0.0
Diffstat (limited to 'pkgs/development/python-modules/lmtpd')
-rw-r--r--pkgs/development/python-modules/lmtpd/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/lmtpd/default.nix b/pkgs/development/python-modules/lmtpd/default.nix
new file mode 100644
index 000000000000..9ad9ddb433f0
--- /dev/null
+++ b/pkgs/development/python-modules/lmtpd/default.nix
@@ -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 ];
+  };
+}