1{ buildPythonPackage, fetchPypi, lib
2, authres, dnspython, dkimpy, publicsuffix2
3}:
4
5buildPythonPackage rec {
6 pname = "authheaders";
7 version = "0.15.1";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "sha256-90rOvu+CbHtammrMDZpPx7rIboIT2X/jL1GtfjpmuOk=";
12 };
13
14 propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix2 ];
15
16 meta = with lib; {
17 description = "Python library for the generation of email authentication headers";
18 homepage = "https://github.com/ValiMail/authentication-headers";
19 license = licenses.mit;
20 maintainers = with maintainers; [ ];
21 };
22}