summary refs log tree commit diff
path: root/pkgs/development/python-modules/authheaders/default.nix
blob: b70078d416789c44a9478020d1664a89ac5f4b40 (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
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchPypi
, authres
, dnspython
, dkimpy
, publicsuffix2
, pythonOlder
}:

buildPythonPackage rec {
  pname = "authheaders";
  version = "0.15.2";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-kAzuiKYeZH74Tr38vO4BVDIHRNjsHX1ukmhC9EcoO98=";
  };

  propagatedBuildInputs = [
    authres
    dnspython
    dkimpy
    publicsuffix2
  ];

  meta = with lib; {
    description = "Python library for the generation of email authentication headers";
    homepage = "https://github.com/ValiMail/authentication-headers";
    changelog = "https://github.com/ValiMail/authentication-headers/blob${version}/CHANGES";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}