depot/third_party/nixpkgs/pkgs/development/python-modules/dkimpy/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

53 lines
1.2 KiB
Nix

{
lib,
fetchPypi,
openssl,
buildPythonPackage,
pytest,
dnspython,
pynacl,
authres,
python,
}:
buildPythonPackage rec {
pname = "dkimpy";
version = "1.1.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-DOctlh9EPo+fBWlLNUVC3uU04I4rjFtgxi1drKfB2g8=";
};
nativeCheckInputs = [ pytest ];
propagatedBuildInputs = [
openssl
dnspython
pynacl
authres
];
patchPhase = ''
substituteInPlace dkim/dknewkey.py --replace \
/usr/bin/openssl ${openssl}/bin/openssl
'';
checkPhase = ''
${python.interpreter} ./test.py
'';
meta = with lib; {
description = "DKIM + ARC email signing/verification tools + Python module";
longDescription = ''
Python module that implements DKIM (DomainKeys Identified Mail) email
signing and verification. It also provides a number of convєnient tools
for command line signing and verification, as well as generating new DKIM
records. This version also supports the experimental Authenticated
Received Chain (ARC) protocol.
'';
homepage = "https://launchpad.net/dkimpy";
license = licenses.bsd3;
maintainers = with maintainers; [ leenaars ];
};
}