2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchPypi, openssl, buildPythonPackage
|
2018-07-08 13:23:17 +01:00
|
|
|
, pytest, dnspython, pynacl, authres, python }:
|
2017-04-20 19:22:21 +01:00
|
|
|
|
2018-07-08 13:23:17 +01:00
|
|
|
buildPythonPackage rec {
|
2018-06-23 14:27:58 +01:00
|
|
|
pname = "dkimpy";
|
2019-04-16 18:15:35 +01:00
|
|
|
version = "0.9.2";
|
2017-04-20 19:22:21 +01:00
|
|
|
|
2018-07-08 13:23:17 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 18:15:35 +01:00
|
|
|
sha256 = "83d5ddc1b83304dbccba1dc7b9e0ee37bec4269bb9ad5779480991525c3811d6";
|
2018-07-08 13:23:17 +01:00
|
|
|
};
|
2017-04-20 19:22:21 +01:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
checkInputs = [ pytest ];
|
2018-07-08 13:23:17 +01:00
|
|
|
propagatedBuildInputs = [ openssl dnspython pynacl authres ];
|
2017-04-20 19:22:21 +01:00
|
|
|
|
2017-07-09 00:32:01 +01:00
|
|
|
patchPhase = ''
|
2018-07-08 13:23:17 +01:00
|
|
|
substituteInPlace dkim/dknewkey.py --replace \
|
2017-07-09 00:32:01 +01:00
|
|
|
/usr/bin/openssl ${openssl}/bin/openssl
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
2018-07-08 13:23:17 +01:00
|
|
|
${python.interpreter} ./test.py
|
2017-07-09 00:32:01 +01:00
|
|
|
'';
|
2017-04-20 19:22:21 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "DKIM + ARC email signing/verification tools + Python module";
|
2017-07-09 00:32:01 +01:00
|
|
|
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.
|
2017-04-20 19:22:21 +01:00
|
|
|
'';
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://launchpad.net/dkimpy;
|
2017-04-20 19:22:21 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
};
|
|
|
|
}
|