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

buildPythonPackage rec {
  pname = "authheaders";
  version = "0.12.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0hf1p6ws3jma608pmcb5qsl58xg33wz2s51qqzi9zix0llcnyc97";
  };

  propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix ]
                          ++ lib.optional isPy27 ipaddress;

  meta = {
    description = "Python library for the generation of email authentication headers";
    homepage = https://github.com/ValiMail/authentication-headers;
    license = lib.licenses.mit;
  };
}