Files
nixpkgs/pkgs/development/python-modules/omemo/default.nix
2025-07-26 22:08:19 +02:00

75 lines
1.8 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
typing-extensions,
xeddsa,
pytestCheckHook,
oldmemo,
# passthru
omemo,
}:
buildPythonPackage rec {
pname = "omemo";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Syndace";
repo = "python-omemo";
tag = "v${version}";
hash = "sha256-egb4UFoF/gS3LKutArnJSXxDYH/xyBLOxWec98rOT9Y=";
};
build-system = [
setuptools
];
dependencies = [
typing-extensions
xeddsa
];
doCheck = false;
nativeCheckInputs = [
pytestCheckHook
oldmemo
]
++ oldmemo.optional-dependencies.xml;
pythonImportsCheck = [
"omemo"
];
passthru.tests = {
pytest = omemo.overridePythonAttrs {
doCheck = true;
};
};
meta = {
description = "Open python implementation of the OMEMO Multi-End Message and Object Encryption protocol";
longDescription = ''
A complete implementation of XEP-0384 on protocol-level, i.e. more than just the cryptography.
python-omemo supports different versions of the specification through so-called backends.
A backend for OMEMO in the urn:xmpp:omemo:2 namespace (the most recent version of the specification) is available
in the python-twomemo Python package.
A backend for (legacy) OMEMO in the eu.siacs.conversations.axolotl namespace is available in the python-oldmemo
package.
Multiple backends can be loaded and used at the same time, the library manages their coexistence transparently.
'';
homepage = "https://github.com/Syndace/python-omemo";
changelog = "https://github.com/Syndace/python-omemo/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
teams = with lib.teams; [ ngi ];
maintainers = with lib.maintainers; [ themadbit ];
};
}