blob: e3aad5cdd1f294352731ac37a8af2692250f0743 (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
lib,
authres,
buildPythonPackage,
dkimpy,
dnspython,
fetchFromGitHub,
publicsuffix2,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "authheaders";
version = "0.16.3";
pyproject = true;
src = fetchFromGitHub {
owner = "ValiMail";
repo = "authentication-headers";
tag = version;
hash = "sha256-BFMZpSJ4qCEL42xTiM/D5dkatxohiCrOWAkNZHFUhac=";
};
build-system = [ setuptools ];
dependencies = [
authres
dnspython
dkimpy
publicsuffix2
setuptools
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "authheaders" ];
disabledTests = [
# Test fails with timeout even if the resolv.conf hack is present
"test_authenticate_dmarc_psdsub"
];
meta = {
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 = lib.licenses.mit;
maintainers = [ ];
mainProgram = "dmarc-policy-find";
};
}
|