nixpkgs/pkgs/development/tools/patatt/default.nix
2023-05-25 15:52:27 +03:00

29 lines
882 B
Nix

{ lib, python3Packages, fetchPypi }:
python3Packages.buildPythonApplication rec {
pname = "patatt";
version = "0.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-WaEq4qWL6xAZ3cJJ/lkJ5XTIrXcOMIESbytvWbsYx2s=";
};
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; [ qyliss yoctocell ];
};
}