python3Packages.lzallright: fix build on darwin
This commit is contained in:
parent
0479d24b0e
commit
b1f3f99a8f
1 changed files with 4 additions and 0 deletions
|
@ -1,8 +1,10 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, callPackage
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, libiconv
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -26,6 +28,8 @@ buildPythonPackage rec {
|
|||
|
||||
nativeBuildInputs = with rustPlatform; [ cargoSetupHook maturinBuildHook ];
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
||||
|
||||
pythonImportsCheck = [ "lzallright" ];
|
||||
|
||||
doCheck = false;
|
||||
|
|
Loading…
Reference in a new issue