Skip to content

Commit

Permalink
doc/python: correct platform conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
Artturin committed Sep 27, 2024
1 parent 40799fc commit 8f3e655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/languages-frameworks/python.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ for example:
] ++ lib.optionals (pythonAtLeast "3.8") [
# broken due to python3.8 async changes
"async"
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
] ++ lib.optionals stdenv.buildPlatform.isDarwin [
# can fail when building with other packages
"socket"
];
Expand Down

0 comments on commit 8f3e655

Please sign in to comment.