nixpkgs/pkgs/development/python-modules/python-olm/default.nix
Philipp Gesang 0169b72b65
python3Packages.python-olm: remove dependency on the typing package
Typing has been upstreamed into CPython and will cause errors
if loaded with a 3.7 interpreter. Cf.
https://github.com/python/typing/issues/573

Under Python3 libolm works without typing as tested via
weechat-matrix.

typing is still pulled in when installed for Python2.
2020-01-13 14:22:45 +01:00

29 lines
593 B
Nix

{ lib, buildPythonPackage, olm,
cffi, future, isPy3k, typing }:
buildPythonPackage {
pname = "python-olm";
inherit (olm) src version;
sourceRoot = "${olm.name}/python";
buildInputs = [ olm ];
preBuild = ''
make include/olm/olm.h
'';
propagatedBuildInputs = [
cffi
future
] ++ lib.optionals (!isPy3k) [ typing ];
doCheck = false;
meta = with lib; {
description = "Python bindings for Olm";
homepage = "https://gitlab.matrix.org/matrix-org/olm/tree/master/python";
license = olm.meta.license;
maintainers = [ maintainers.tilpner ];
};
}