1 { lib, buildPythonPackage, isPy3k, olm
2 , cffi, future, typing }:
6 inherit (olm) src version;
8 sourceRoot = "source/python";
12 make include/olm/olm.h
15 propagatedBuildInputs = [
18 ] ++ lib.optionals (!isPy3k) [ typing ];
20 # Some required libraries for testing are not packaged yet.
22 pythonImportsCheck = [ "olm" ];
25 inherit (olm.meta) license maintainers;
26 description = "Python bindings for Olm";
27 homepage = "https://gitlab.matrix.org/matrix-org/olm/tree/master/python";