about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/muttils/default.nix
blob: 98f96d13212331a3fe707c8c3dbc3fb26e269e00 (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
{ lib
, buildPythonPackage
, fetchurl
, isPy3k
}:

buildPythonPackage {
  pname = "muttils";
  version = "1.3";
  disabled = isPy3k;

  src = fetchurl {
    url = "https://www.blacktrash.org/hg/muttils/archive/8bb26094df06.tar.bz2";
    sha256 = "1a4kxa0fpgg6rdj5p4kggfn8xpniqh8v5kbiaqc6wids02m7kag6";
  };

  # Tests don't work
  doCheck = false;

  meta = with lib; {
    description = "Utilities for use with console mail clients, like mutt";
    homepage = "https://www.blacktrash.org/hg/muttils";
    license = licenses.gpl2Plus;
  };

}