mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 23:23:36 +00:00
Merge pull request #324325 from wegank/deltalake-darwin
python311Packages.deltalake: fix build on darwin
This commit is contained in:
commit
38c690a086
@ -5,6 +5,9 @@
|
||||
, pyarrow
|
||||
, pyarrow-hotfix
|
||||
, openssl
|
||||
, stdenv
|
||||
, darwin
|
||||
, libiconv
|
||||
, pkg-config
|
||||
, pytestCheckHook
|
||||
, pytest-benchmark
|
||||
@ -34,7 +37,13 @@ buildPythonPackage rec {
|
||||
pyarrow-hotfix
|
||||
];
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
buildInputs = [
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
darwin.apple_sdk.frameworks.SystemConfiguration
|
||||
libiconv
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config # openssl-sys needs this
|
||||
|
Loading…
Reference in New Issue
Block a user