python3Packages.rerun-sdk: fix -liconv on darwin

Cf. https://hydra.nixos.org/build/254442092/nixlog/1
This commit is contained in:
Someone Serge 2024-03-30 02:03:26 +00:00
parent d5766175de
commit 48368865bc

View File

@ -12,6 +12,7 @@
typing-extensions,
pytestCheckHook,
python,
libiconv,
}:
buildPythonPackage {
@ -27,6 +28,10 @@ buildPythonPackage {
rustPlatform.maturinBuildHook
];
buildInputs = [
libiconv # No-op on Linux, necessary on Darwin.
];
propagatedBuildInputs = [
attrs
numpy