summary refs log tree commit diff
path: root/pkgs/development/python-modules/imaplib2/default.nix
blob: 0ceff353f9a693fd91e66eb1dd0c2308df4efeb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "imaplib2";
  version = "2.45.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a35b6d88258696e80aabecfb784e08730b8558fcaaa3061ff2c7f8637afbd0b3";
  };

  # No tests on PyPI and no tags on GitHub :(
  doCheck = false;

  meta = with lib; {
    description = "A threaded Python IMAP4 client";
    homepage = https://github.com/bcoe/imaplib2;
    # See https://github.com/bcoe/imaplib2/issues/25
    license = licenses.psfl;
    maintainers = with maintainers; [ dotlambda ];
  };
}