From 5d2678517ac7cc804e78198bfce1584f223e09d0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 27 Jun 2024 11:03:08 +0200 Subject: [PATCH 1/2] python312Packages.authheaders: 0.16.2 -> 0.16.3 Diff: https://github.com/ValiMail/authentication-headers/compare/refs/tags/0.16.2...0.16.3 Changelog: https://github.com/ValiMail/authentication-headers/blob0.16.3/CHANGES --- pkgs/development/python-modules/authheaders/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/authheaders/default.nix b/pkgs/development/python-modules/authheaders/default.nix index 1bd70e81d333..dcbeca5e83f6 100644 --- a/pkgs/development/python-modules/authheaders/default.nix +++ b/pkgs/development/python-modules/authheaders/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "authheaders"; - version = "0.16.2"; + version = "0.16.3"; pyproject = true; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "ValiMail"; repo = "authentication-headers"; rev = "refs/tags/${version}"; - hash = "sha256-/vxUUSWwysYQzcy2AmkF4f8R59FHRnBfFlPRpfM9e5o="; + hash = "sha256-BFMZpSJ4qCEL42xTiM/D5dkatxohiCrOWAkNZHFUhac="; }; nativeBuildInputs = [ setuptools ]; From 611d3754d28dadaf1e716121901bdde4606dd4cb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 27 Jun 2024 11:05:11 +0200 Subject: [PATCH 2/2] python312Packages.authheaders: refactor --- pkgs/development/python-modules/authheaders/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/authheaders/default.nix b/pkgs/development/python-modules/authheaders/default.nix index dcbeca5e83f6..77df68b23c2a 100644 --- a/pkgs/development/python-modules/authheaders/default.nix +++ b/pkgs/development/python-modules/authheaders/default.nix @@ -25,9 +25,9 @@ buildPythonPackage rec { hash = "sha256-BFMZpSJ4qCEL42xTiM/D5dkatxohiCrOWAkNZHFUhac="; }; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ authres dnspython dkimpy @@ -46,10 +46,10 @@ buildPythonPackage rec { 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; [ ]; + mainProgram = "dmarc-policy-find"; }; }