depot/third_party/nixpkgs/pkgs/development/python-modules/python-olm/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

46 lines
757 B
Nix

{
buildPythonPackage,
isPy3k,
olm,
cffi,
future,
aspectlib,
pytest-benchmark,
pytestCheckHook,
}:
buildPythonPackage {
pname = "python-olm";
format = "setuptools";
inherit (olm) src version;
disabled = !isPy3k;
sourceRoot = "${olm.src.name}/python";
buildInputs = [ olm ];
preBuild = ''
make include/olm/olm.h
'';
propagatedBuildInputs = [
cffi
future
];
propagatedNativeBuildInputs = [ cffi ];
pythonImportsCheck = [ "olm" ];
nativeCheckInputs = [
aspectlib
pytest-benchmark
pytestCheckHook
];
meta = {
inherit (olm.meta) license maintainers;
description = "Python bindings for Olm";
homepage = "https://gitlab.matrix.org/matrix-org/olm/tree/master/python";
};
}