summary refs log tree commit diff
path: root/pkgs/development/python-modules/imapclient/default.nix
blob: 5334d473620ab791fdd234e1207599c3ddff0b76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv
, buildPythonPackage
, fetchurl
, isPy34
, isPy35
, mock
}:

buildPythonPackage rec {
  pname = "IMAPClient";
  version = "0.13";
  disabled = isPy34 || isPy35;

  src = fetchurl {
    url = "http://freshfoo.com/projects/IMAPClient/${pname}-${version}.tar.gz";
    sha256 = "0v7kd1crdbff0rmh4ddm5qszkis6hpk9084qh94al8h7g4y9l3is";
  };

  buildInputs = [ mock ];

  preConfigure = ''
    sed -i '/distribute_setup/d' setup.py
    substituteInPlace setup.py --replace "mock==0.8.0" "mock"
  '';

  meta = with stdenv.lib; {
    homepage = http://imapclient.freshfoo.com/;
    description = "Easy-to-use, Pythonic and complete IMAP client library";
    license = licenses.bsd3;
  };

}