Merge pull request #247964 from tjni/pydantic-core

python3.pkgs.pydantic-core: add libiconv on darwin

authored by

Weijia Wang and committed by
GitHub
c6b754b5 be8007cd

+7 -1
+7 -1
pkgs/development/python-modules/pydantic-core/default.nix
··· 1 - { lib 1 + { stdenv 2 + , lib 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , cargo 5 6 , rustPlatform 6 7 , rustc 8 + , libiconv 7 9 , typing-extensions 8 10 , pytestCheckHook 9 11 , hypothesis ··· 38 40 rustPlatform.maturinBuildHook 39 41 rustc 40 42 typing-extensions 43 + ]; 44 + 45 + buildInputs = lib.optionals stdenv.isDarwin [ 46 + libiconv 41 47 ]; 42 48 43 49 propagatedBuildInputs = [