mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
python3Packages.rerun-sdk: fix -liconv on darwin
Cf. https://hydra.nixos.org/build/254442092/nixlog/1
This commit is contained in:
parent
d5766175de
commit
48368865bc
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user