python312Packages.python-bidi: add missing dependency libiconv to fix darwin build (#342149)
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user