2023-05-25 12:52:27 +00:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2022-03-24 15:19:18 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "patatt";
|
2024-01-21 05:36:20 +00:00
|
|
|
version = "0.6.3";
|
2022-03-24 15:19:18 +00:00
|
|
|
|
2023-05-25 12:52:27 +00:00
|
|
|
src = fetchPypi {
|
2022-03-24 15:19:18 +00:00
|
|
|
inherit pname version;
|
2024-01-21 05:36:20 +00:00
|
|
|
sha256 = "sha256-mAgm9lKdJXbCZ8ofVk1b7wRstH5UIVu1mO1sS5stCig=";
|
2022-03-24 15:19:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
pynacl
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://git.kernel.org/pub/scm/utils/patatt/patatt.git/about/";
|
|
|
|
license = licenses.mit0;
|
|
|
|
description = "Add cryptographic attestation to patches sent via email";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "patatt";
|
2022-03-24 15:19:18 +00:00
|
|
|
longDescription = ''
|
|
|
|
This utility allows an easy way to add end-to-end cryptographic
|
|
|
|
attestation to patches sent via mail. It does so by adapting the
|
|
|
|
DKIM email signature standard to include cryptographic
|
|
|
|
signatures via the X-Developer-Signature email header.
|
|
|
|
'';
|
2022-10-09 16:26:05 +00:00
|
|
|
maintainers = with maintainers; [ qyliss yoctocell ];
|
2022-03-24 15:19:18 +00:00
|
|
|
};
|
|
|
|
}
|