patatt: init at 0.4.9

This commit is contained in:
Xinglu Chen 2022-03-24 16:19:18 +01:00
parent e13494d071
commit c92bd0b04e
No known key found for this signature in database
GPG key ID: ACF50999A2FB5C79
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "patatt";
version = "0.4.9";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-qHhNxgP43vBSjrHp2Ygzq5J/f6YyBD4VDTp9S1ud6zo=";
};
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";
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; [ yoctocell ];
};
}

View file

@ -8886,6 +8886,8 @@ with pkgs;
patchage = callPackage ../applications/audio/patchage { };
patatt = callPackage ../development/tools/patatt { };
pcapfix = callPackage ../tools/networking/pcapfix { };
pbzip2 = callPackage ../tools/compression/pbzip2 { };