nixpkgs/pkgs/development/python-modules/dkimpy/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

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