about summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2023-06-28 10:03:54 +0300
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-07-28 12:13:25 +0200
commit1298c367b106f005c06b8537bd8954d7ff97885c (patch)
tree341fdf758cb1f5178654fe84e4b72e4e5ffbcc54 /doc/languages-frameworks
parent8056d8544f315deb6bd4e490164fb19f7acb1e73 (diff)
downloadnixlib-1298c367b106f005c06b8537bd8954d7ff97885c.tar
nixlib-1298c367b106f005c06b8537bd8954d7ff97885c.tar.gz
nixlib-1298c367b106f005c06b8537bd8954d7ff97885c.tar.bz2
nixlib-1298c367b106f005c06b8537bd8954d7ff97885c.tar.lz
nixlib-1298c367b106f005c06b8537bd8954d7ff97885c.tar.xz
nixlib-1298c367b106f005c06b8537bd8954d7ff97885c.tar.zst
nixlib-1298c367b106f005c06b8537bd8954d7ff97885c.zip
pip-build-hook.sh: Support $pipBuildFlags
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/python.section.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index a66113db516c..7d5a4dfc3d02 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -1189,6 +1189,8 @@ following are specific to `buildPythonPackage`:
 * `pipInstallFlags ? []`: A list of strings. Arguments to be passed to `pip
   install`. To pass options to `python setup.py install`, use
   `--install-option`. E.g., `pipInstallFlags=["--install-option='--cpp_implementation'"]`.
+* `pipBuildFlags ? []`: A list of strings. Arguments to be passed to `pip
+  wheel`.
 * `pythonPath ? []`: List of packages to be added into `$PYTHONPATH`. Packages
   in `pythonPath` are not propagated (contrary to `propagatedBuildInputs`).
 * `preShellHook`: Hook to execute commands before `shellHook`.