python3Packages.oldmemo: init at 1.1.0

This commit is contained in:
themadbit
2025-07-26 22:08:19 +02:00
committed by Sandro Jäckel
parent 11ef0602b0
commit 0ff91555fb
2 changed files with 62 additions and 0 deletions
@@ -0,0 +1,60 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
typing-extensions,
xeddsa,
doubleratchet,
omemo,
x3dh,
cryptography,
protobuf,
xmlschema,
}:
buildPythonPackage rec {
pname = "oldmemo";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Syndace";
repo = "python-oldmemo";
tag = "v${version}";
hash = "sha256-iAsp42VcGsf3Nhk0I97Wi3SlpLxcA6BkVaFm1yY0HrY=";
};
build-system = [
setuptools
];
dependencies = [
typing-extensions
xeddsa
doubleratchet
omemo
x3dh
cryptography
protobuf
];
optional-dependencies.xml = [
xmlschema
];
pythonImportsCheck = [
"oldmemo"
];
meta = {
description = "Backend implementation of the `eu.siacs.conversations.axolotl` namespace for python-omemo";
homepage = "https://github.com/Syndace/python-oldmemo";
changelog = "https://github.com/Syndace/python-oldmemo/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ themadbit ];
};
}
+2
View File
@@ -10629,6 +10629,8 @@ self: super: with self; {
oldest-supported-numpy = callPackage ../development/python-modules/oldest-supported-numpy { };
oldmemo = callPackage ../development/python-modules/oldmemo { };
olefile = callPackage ../development/python-modules/olefile { };
oletools = callPackage ../development/python-modules/oletools { };