about summary refs log tree commit diff
path: root/doc/languages-frameworks/python.section.md
diff options
context:
space:
mode:
authorStig Otnes Kolstad <stigok@users.noreply.github.com>2019-10-24 02:50:28 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-10-24 08:29:33 +0200
commit3265f554ca6078b571f979ea733ae83786ed0ec9 (patch)
treeddaadb271a14dc74a11dd67e99c1086e8af79966 /doc/languages-frameworks/python.section.md
parent092a835bab9cef9418b3d0b0e18396ed230e35bb (diff)
downloadnixlib-3265f554ca6078b571f979ea733ae83786ed0ec9.tar
nixlib-3265f554ca6078b571f979ea733ae83786ed0ec9.tar.gz
nixlib-3265f554ca6078b571f979ea733ae83786ed0ec9.tar.bz2
nixlib-3265f554ca6078b571f979ea733ae83786ed0ec9.tar.lz
nixlib-3265f554ca6078b571f979ea733ae83786ed0ec9.tar.xz
nixlib-3265f554ca6078b571f979ea733ae83786ed0ec9.tar.zst
nixlib-3265f554ca6078b571f979ea733ae83786ed0ec9.zip
doc: fix tiny typo
Diffstat (limited to 'doc/languages-frameworks/python.section.md')
-rw-r--r--doc/languages-frameworks/python.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index 4b18a9139d8e..02bff8666e29 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -593,7 +593,7 @@ as the interpreter unless overridden otherwise.
 All parameters from `stdenv.mkDerivation` function are still supported. The following are specific to `buildPythonPackage`:
 
 * `catchConflicts ? true`: If `true`, abort package build if a package name appears more than once in dependency tree. Default is `true`.
-* `disabled` ? false: If `true`, package is not build for the particular Python interpreter version.
+* `disabled` ? false: If `true`, package is not built for the particular Python interpreter version.
 * `dontWrapPythonPrograms ? false`: Skip wrapping of python programs.
 * `permitUserSite ? false`: Skip setting the `PYTHONNOUSERSITE` environment variable in wrapped programs.
 * `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'"]`.