Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "patatt";
|
|
version = "0.6.3";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-mAgm9lKdJXbCZ8ofVk1b7wRstH5UIVu1mO1sS5stCig=";
|
|
};
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
pynacl
|
|
];
|
|
|
|
pythonImportsCheck = [ "patatt" ];
|
|
|
|
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
|
|
];
|
|
};
|
|
}
|