python312Packages.python-bidi: add missing dependency libiconv to fix darwin build (#342149)

This commit is contained in:
Peder Bergebakken Sundt
2024-09-16 14:34:35 +02:00
committed by GitHub
@@ -3,6 +3,7 @@
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
libiconv,
pytestCheckHook,
}:
@@ -24,6 +25,8 @@ buildPythonPackage rec {
hash = "sha256-34R8T8cXiX1iRx/Zb51Eb/nf0wLpN38hz0VnsmzPzws=";
};
buildInputs = [ libiconv ];
build-system = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
@@ -35,11 +38,11 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
meta = {
homepage = "https://github.com/MeirKriheli/python-bidi";
description = "Pure python implementation of the BiDi layout algorithm";
mainProgram = "pybidi";
platforms = platforms.unix;
maintainers = with maintainers; [ freezeboy ];
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ freezeboy ];
};
}