summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2016-06-16 11:49:19 +0100
committerDomen Kožar <domen@dev.si>2016-06-16 11:49:19 +0100
commit3ea80681813553bae50d5c411869f94d2ca29373 (patch)
tree84a2da801ca54fee5727a131caeafac1a1dffc48 /doc
parent5b7c6a11b5d50b8f28f74da828eda07bef806fa2 (diff)
downloadnixlib-3ea80681813553bae50d5c411869f94d2ca29373.tar
nixlib-3ea80681813553bae50d5c411869f94d2ca29373.tar.gz
nixlib-3ea80681813553bae50d5c411869f94d2ca29373.tar.bz2
nixlib-3ea80681813553bae50d5c411869f94d2ca29373.tar.lz
nixlib-3ea80681813553bae50d5c411869f94d2ca29373.tar.xz
nixlib-3ea80681813553bae50d5c411869f94d2ca29373.tar.zst
nixlib-3ea80681813553bae50d5c411869f94d2ca29373.zip
buildPythonPackage: be able to disable package conflict check
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/python.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md
index 50acc7f28f78..809e51460848 100644
--- a/doc/languages-frameworks/python.md
+++ b/doc/languages-frameworks/python.md
@@ -532,6 +532,7 @@ All parameters from `mkDerivation` function are still supported.
 * `makeWrapperArgs`: A list of strings. Arguments to be passed to `makeWrapper`, which wraps generated binaries. By default, the arguments to `makeWrapper` set `PATH` and `PYTHONPATH` environment variables before calling the binary. Additional arguments here can allow a developer to set environment variables which will be available when the binary is run. For example, `makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]`.
 * `installFlags`: A list of strings. Arguments to be passed to `pip install`. To pass options to `python setup.py install`, use `--install-option`. E.g., `installFlags=["--install-option='--cpp_implementation'"].
 * `format`: Format of the source. Options are `setup` for when the source has a `setup.py` and `setuptools` is used to build a wheel, and `wheel` in case the source is already a binary wheel. The default value is `setup`.
+* `catchConflicts` If `true`, abort package build if a package name appears more than once in dependency tree. Default is `true`.
 
 #### `buildPythonApplication` function