python3Packages.cryptography: add missing libiconv build dependency on darwin
Fixing the following: ``` error: linking with `/nix/store/l3ca456ppdy8hi9hc0rvyr6mrm76si08-clang-wrapper-11.1.0/bin/cc` failed: exit code: 1 = note: ld: library not found for -liconv ```
This commit is contained in:
committed by
Jonathan Ringer
parent
8a5e4be6b6
commit
703579f722
@@ -1590,7 +1590,9 @@ in {
|
||||
|
||||
cryptacular = callPackage ../development/python-modules/cryptacular { };
|
||||
|
||||
cryptography = callPackage ../development/python-modules/cryptography { };
|
||||
cryptography = callPackage ../development/python-modules/cryptography {
|
||||
inherit (pkgs.darwin) libiconv;
|
||||
};
|
||||
|
||||
cryptography_vectors = callPackage ../development/python-modules/cryptography/vectors.nix { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user