blob: 5bd175b945bbacae07a23332865356e7ecc5a451 (
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
|
{
buildPythonPackage,
isPy3k,
olm,
setuptools,
cffi,
aspectlib,
pytest-benchmark,
pytestCheckHook,
}:
buildPythonPackage {
pname = "python-olm";
inherit (olm) src version;
pyproject = true;
disabled = !isPy3k;
sourceRoot = "${olm.src.name}/python";
buildInputs = [ olm ];
preBuild = ''
make include/olm/olm.h
'';
build-system = [
setuptools
];
dependencies = [
cffi
];
propagatedNativeBuildInputs = [ cffi ];
pythonImportsCheck = [ "olm" ];
nativeCheckInputs = [
aspectlib
pytest-benchmark
pytestCheckHook
];
pytestFlags = [ "--benchmark-disable" ];
meta = {
inherit (olm.meta) license maintainers;
description = "Python bindings for Olm";
homepage = "https://gitlab.matrix.org/matrix-org/olm/tree/master/python";
};
}
|