python310Packages.authheaders: remove backport ipaddress (#175415)

Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
This commit is contained in:
Sandro
2022-05-30 22:10:24 +02:00
committed by GitHub
co-authored by Jonathan Ringer
parent 63cbdf67ae
commit 7c49511474
@@ -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; [ ];
};
}