Skip to content

Commit

Permalink
python312Packages.python-bidi: add missing dependency libiconv to fix…
Browse files Browse the repository at this point in the history
… darwin build (NixOS#342149)
  • Loading branch information
pbsds authored Sep 16, 2024
2 parents 3314a70 + 678de7f commit 989bc02
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pkgs/development/python-modules/python-bidi/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
libiconv,
pytestCheckHook,
}:

Expand All @@ -24,6 +25,8 @@ buildPythonPackage rec {
hash = "sha256-34R8T8cXiX1iRx/Zb51Eb/nf0wLpN38hz0VnsmzPzws=";
};

buildInputs = [ libiconv ];

build-system = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
Expand All @@ -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 ];
};
}

0 comments on commit 989bc02

Please sign in to comment.