lol
1{ lib, python3Packages }:
2
3python3Packages.buildPythonApplication rec {
4 pname = "patatt";
5 version = "0.6.2";
6
7 src = python3Packages.fetchPypi {
8 inherit pname version;
9 sha256 = "sha256-WaEq4qWL6xAZ3cJJ/lkJ5XTIrXcOMIESbytvWbsYx2s=";
10 };
11
12 propagatedBuildInputs = with python3Packages; [
13 pynacl
14 ];
15
16 meta = with lib; {
17 homepage = "https://git.kernel.org/pub/scm/utils/patatt/patatt.git/about/";
18 license = licenses.mit0;
19 description = "Add cryptographic attestation to patches sent via email";
20 longDescription = ''
21 This utility allows an easy way to add end-to-end cryptographic
22 attestation to patches sent via mail. It does so by adapting the
23 DKIM email signature standard to include cryptographic
24 signatures via the X-Developer-Signature email header.
25 '';
26 maintainers = with maintainers; [ qyliss yoctocell ];
27 };
28}