depot/third_party/nixpkgs/pkgs/development/python-modules/authheaders/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

55 lines
1.2 KiB
Nix

{
lib,
authres,
buildPythonPackage,
dkimpy,
dnspython,
fetchFromGitHub,
publicsuffix2,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "authheaders";
version = "0.16.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ValiMail";
repo = "authentication-headers";
rev = "refs/tags/${version}";
hash = "sha256-/vxUUSWwysYQzcy2AmkF4f8R59FHRnBfFlPRpfM9e5o=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
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 = with lib; {
description = "Python library for the generation of email authentication headers";
mainProgram = "dmarc-policy-find";
homepage = "https://github.com/ValiMail/authentication-headers";
changelog = "https://github.com/ValiMail/authentication-headers/blob${version}/CHANGES";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}