python310Packages.bcrypt: add libiconv on darwin
This commit is contained in:
parent
ef833a6fd2
commit
fd4242a7eb
1 changed files with 5 additions and 0 deletions
|
@ -8,6 +8,8 @@
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, cffi
|
, cffi
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, libiconv
|
||||||
|
, stdenv
|
||||||
# for passthru.tests
|
# for passthru.tests
|
||||||
, asyncssh
|
, asyncssh
|
||||||
, django_4
|
, django_4
|
||||||
|
@ -45,6 +47,9 @@ buildPythonPackage rec {
|
||||||
rust.rustc
|
rust.rustc
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
# Remove when https://github.com/NixOS/nixpkgs/pull/190093 lands.
|
||||||
|
buildInputs = lib.optional stdenv.isDarwin libiconv;
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
cffi
|
cffi
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue