2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 16:53:21 +00:00

python3Packages.python-olm: fix cross-compilation

This commit is contained in:
legendofmiracles 2021-10-19 22:06:02 -06:00 committed by Jonathan Ringer
parent 4242f3f197
commit 69e1dd893b

View File

@ -17,6 +17,10 @@ buildPythonPackage {
future
] ++ lib.optionals (!isPy3k) [ typing ];
propagatedNativeBuildInputs = [
cffi
];
# Some required libraries for testing are not packaged yet.
doCheck = false;
pythonImportsCheck = [ "olm" ];