nixpkgs/pkgs/development/python-modules/authheaders/default.nix
Sandro 7c49511474
python310Packages.authheaders: remove backport ipaddress (#175415)
Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
2022-05-30 22:10:24 +02:00

23 lines
603 B
Nix

{ buildPythonPackage, fetchPypi, lib
, authres, dnspython, dkimpy, publicsuffix2
}:
buildPythonPackage rec {
pname = "authheaders";
version = "0.15.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-90rOvu+CbHtammrMDZpPx7rIboIT2X/jL1GtfjpmuOk=";
};
propagatedBuildInputs = [ authres dnspython dkimpy publicsuffix2 ];
meta = with lib; {
description = "Python library for the generation of email authentication headers";
homepage = "https://github.com/ValiMail/authentication-headers";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}