From 7c495114745a1bd9eaa9d2af67c2d76c6e105fa8 Mon Sep 17 00:00:00 2001 From: Sandro Date: Mon, 30 May 2022 22:10:24 +0200 Subject: python310Packages.authheaders: remove backport ipaddress (#175415) Co-authored-by: Jonathan Ringer --- pkgs/development/python-modules/authheaders/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/authheaders/default.nix b/pkgs/development/python-modules/authheaders/default.nix index 0d9c1a4093d..dfcb7527d98 100644 --- a/pkgs/development/python-modules/authheaders/default.nix +++ b/pkgs/development/python-modules/authheaders/default.nix @@ -1,5 +1,5 @@ -{ buildPythonPackage, fetchPypi, isPy27, lib -, authres, dnspython, dkimpy, ipaddress, publicsuffix2 +{ buildPythonPackage, fetchPypi, lib +, authres, dnspython, dkimpy, publicsuffix2 }: buildPythonPackage rec { @@ -11,12 +11,12 @@ buildPythonPackage rec { sha256 = "sha256-90rOvu+CbHtammrMDZpPx7rIboIT2X/jL1GtfjpmuOk="; }; - propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix2 ] - ++ lib.optional isPy27 ipaddress; + propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix2 ]; - meta = { + meta = with lib; { description = "Python library for the generation of email authentication headers"; homepage = "https://github.com/ValiMail/authentication-headers"; - license = lib.licenses.mit; + license = licenses.mit; + maintainers = with maintainers; [ ]; }; } -- cgit 1.4.1