about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pynacl
diff options
context:
space:
mode:
authorlegendofmiracles <legendofmiracles@protonmail.com>2021-08-23 07:10:50 -0600
committerlegendofmiracles <legendofmiracles@protonmail.com>2021-08-23 07:34:53 -0600
commita6ca2c5d01bdccf82eaf4b1607ef6f3e634e1d83 (patch)
treeb332f2f35a454faa28fcebf4453981fe2a04fc96 /pkgs/development/python-modules/pynacl
parent9783779685e6e1ac08c5a396c64c521f378985c4 (diff)
python3Packages.pynacl: fix cross compilation
Diffstat (limited to 'pkgs/development/python-modules/pynacl')
-rw-r--r--pkgs/development/python-modules/pynacl/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pynacl/default.nix b/pkgs/development/python-modules/pynacl/default.nix
index f8696dd54ac05..8c5c239aeb414 100644
--- a/pkgs/development/python-modules/pynacl/default.nix
+++ b/pkgs/development/python-modules/pynacl/default.nix
@@ -6,6 +6,7 @@
 , libsodium
 , cffi
 , hypothesis
+, six
 }:
 
 buildPythonPackage rec {
@@ -23,10 +24,14 @@ buildPythonPackage rec {
     libsodium
   ];
 
-  propagatedBuildInputs = [
+  propagatedNativeBuildInputs = [
     cffi
   ];
 
+  propagatedBuildInputs = [
+    six
+  ];
+
   checkInputs = [
     hypothesis
     pytestCheckHook