Skip to content

Commit

Permalink
python311Packages.authheaders: 0.15.3 -> 0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Jan 25, 2024
1 parent 292d8df commit cea1ed8
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions pkgs/development/python-modules/authheaders/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,29 @@
, dnspython
, fetchFromGitHub
, publicsuffix2
, pythonOlder
, pytestCheckHook
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
pname = "authheaders";
version = "0.15.3";
format = "setuptools";
version = "0.16.2";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchFromGitHub {
owner = "ValiMail";
repo = "authentication-headers";
rev = "refs/tags/${version}";
hash = "sha256-96fCx5uN7yegTrCN+LSjtu4u3RL+dcxV/Puyo0eziI8=";
hash = "sha256-/vxUUSWwysYQzcy2AmkF4f8R59FHRnBfFlPRpfM9e5o=";
};

nativeBuildInputs = [
setuptools
];

propagatedBuildInputs = [
authres
dnspython
Expand All @@ -40,6 +44,11 @@ buildPythonPackage rec {
"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";
homepage = "https://github.com/ValiMail/authentication-headers";
Expand Down

0 comments on commit cea1ed8

Please sign in to comment.