blob: 4dfbe7e1b9c4728ef581853d98c7034bac825fef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
doubleratchet,
omemo,
x3dh,
xeddsa,
protobuf,
typing-extensions,
xmlschema,
}:
buildPythonPackage rec {
pname = "twomemo";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Syndace";
repo = "python-twomemo";
tag = "v${version}";
hash = "sha256-TNM7CLxo4C55APuL5BAts8kTyCl2SDajqwkaXxwK19E=";
};
strictDeps = true;
build-system = [ setuptools ];
dependencies = [
doubleratchet
omemo
x3dh
xeddsa
protobuf
typing-extensions
];
optional-dependencies.xml = [
xmlschema
];
pythonImportsCheck = [
"twomemo"
];
meta = {
description = "Backend implementation of the urn:xmpp:omemo:2 namespace for python-omemo";
homepage = "https://github.com/Syndace/python-twomemo";
changelog = "https://github.com/Syndace/python-twomemo/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
teams = with lib.teams; [ ngi ];
maintainers = with lib.maintainers; [ themadbit ];
};
}
|