summaryrefslogtreecommitdiffstats
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-02-25 00:13:49 +0000
committerGitHub <noreply@github.com>2024-02-25 00:13:49 +0000
commit257171f024023815158819b0cb35b5958f1b4975 (patch)
tree91f9a728162c7e67be0ebf5602148377f1841da1 /doc/languages-frameworks
parent57bbe4245f80b90b4b48079750f91bdc0437c66e (diff)
parent7794d8a78570335f10b0f97ae72b14b33c6addc2 (diff)
Merge master into haskell-updates
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/lua.section.md5
-rw-r--r--doc/languages-frameworks/python.section.md2
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/languages-frameworks/lua.section.md b/doc/languages-frameworks/lua.section.md
index 310ea88a86d5..23c40409eaa0 100644
--- a/doc/languages-frameworks/lua.section.md
+++ b/doc/languages-frameworks/lua.section.md
@@ -215,6 +215,11 @@ install the package
environment variable and add dependent libraries to script's `LUA_PATH` and
`LUA_CPATH`.
+It accepts as arguments:
+
+* 'luarocksConfig': a nix value that directly maps to the luarocks config used during
+ the installation
+
By default `meta.platforms` is set to the same value as the interpreter unless overridden otherwise.
#### `buildLuaApplication` function {#buildluaapplication-function}
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index da06fe1d69b5..d1b41d84ddc7 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -475,7 +475,7 @@ are used in [`buildPythonPackage`](#buildpythonpackage-function).
be added as `build-system`.
- `pipInstallHook` to install wheels.
- `pytestCheckHook` to run tests with `pytest`. See [example usage](#using-pytestcheckhook).
-- `pythonCatchConflictsHook` to check whether a Python package is not already existing.
+- `pythonCatchConflictsHook` to fail if the package depends on two different versions of the same dependency.
- `pythonImportsCheckHook` to check whether importing the listed modules works.
- `pythonRelaxDepsHook` will relax Python dependencies restrictions for the package.
See [example usage](#using-pythonrelaxdepshook).