From 6265b71ecd7b11261392a8175255878cc45a5b2c Mon Sep 17 00:00:00 2001 From: legendofmiracles Date: Tue, 19 Oct 2021 23:09:24 -0600 Subject: [PATCH] python3Packages.fastpbkdf2: fix cross-compilation --- pkgs/development/python-modules/fastpbkdf2/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/fastpbkdf2/default.nix b/pkgs/development/python-modules/fastpbkdf2/default.nix index e154471d7a88..51669f90345d 100644 --- a/pkgs/development/python-modules/fastpbkdf2/default.nix +++ b/pkgs/development/python-modules/fastpbkdf2/default.nix @@ -16,6 +16,7 @@ buildPythonPackage rec { buildInputs = [ openssl ]; checkInputs = [ pytest ]; propagatedBuildInputs = [ cffi six ]; + propagatedNativeBuildInputs = [ cffi ]; meta = with lib; { homepage = "https://github.com/Ayrx/python-fastpbkdf2";