about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fastpbkdf2
diff options
context:
space:
mode:
authorlegendofmiracles <legendofmiracles@protonmail.com>2021-10-19 23:09:24 -0600
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-10-29 14:42:15 -0700
commit6265b71ecd7b11261392a8175255878cc45a5b2c (patch)
tree84240a1d1d38e49531be6ad0d48af2a151e88d06 /pkgs/development/python-modules/fastpbkdf2
parentc294812a103569611b2407e9d799089ee9c76037 (diff)
python3Packages.fastpbkdf2: fix cross-compilation
Diffstat (limited to 'pkgs/development/python-modules/fastpbkdf2')
-rw-r--r--pkgs/development/python-modules/fastpbkdf2/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fastpbkdf2/default.nix b/pkgs/development/python-modules/fastpbkdf2/default.nix
index e154471d7a881..51669f90345d7 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";