Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions pkgs/development/python-modules/setuptools-rust/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,16 @@ buildPythonPackage rec {
# integrate the setup hook to set up the build environment for cross compilation
# this hook is automatically propagated to consumers using setuptools-rust as build-system
#
# Only include the setup hook if python.pythonOnTargetForTarget is not empty.
# No need for the setup hook when python.pythonOnTargetForTarget is empty,
# or when the host & target platforms are the same.
#
# python.pythonOnTargetForTarget is not always available, for example in
# pkgsLLVM.python3.pythonOnTargetForTarget. cross build with pkgsLLVM should not be affected.
setupHook =
if python.pythonOnTargetForTarget == { } then
if
python.pythonOnTargetForTarget == { }
|| (lib.systems.equals stdenv.hostPlatform stdenv.targetPlatform)
then
null
else
replaceVars ./setuptools-rust-hook.sh {
Expand Down
Loading