depot/third_party/nixpkgs/pkgs/development/python-modules/authheaders/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

22 lines
601 B
Nix

{ buildPythonPackage, fetchPypi, lib
, authres, dnspython, dkimpy, publicsuffix2
}:
buildPythonPackage rec {
pname = "authheaders";
version = "0.15.1";
src = fetchPypi {
inherit pname version;
hash = "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; [ ];
};
}