about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/patatt/default.nix
blob: b50fae18ae490c0204eec2098e29c09dbd2fdccc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, python3Packages, fetchPypi }:

python3Packages.buildPythonApplication rec {
  pname = "patatt";
  version = "0.6.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-mAgm9lKdJXbCZ8ofVk1b7wRstH5UIVu1mO1sS5stCig=";
  };

  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";
    mainProgram = "patatt";
    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.
    '';
    maintainers = with maintainers; [ qyliss yoctocell ];
  };
}