summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2020-01-08 13:29:03 +0000
committeradisbladis <adisbladis@gmail.com>2020-01-08 13:59:04 +0000
commit2d6f1ff4dd2ce208fce624466b4eeae54eafd61f (patch)
tree4c10fda6b6e45505f9845ceb80725c63a3ebbd26 /doc
parent380220c237d479b81182884afec76e77685e9a36 (diff)
downloadnixpkgs-2d6f1ff4dd2ce208fce624466b4eeae54eafd61f.tar
nixpkgs-2d6f1ff4dd2ce208fce624466b4eeae54eafd61f.tar.gz
nixpkgs-2d6f1ff4dd2ce208fce624466b4eeae54eafd61f.tar.bz2
nixpkgs-2d6f1ff4dd2ce208fce624466b4eeae54eafd61f.tar.lz
nixpkgs-2d6f1ff4dd2ce208fce624466b4eeae54eafd61f.tar.xz
nixpkgs-2d6f1ff4dd2ce208fce624466b4eeae54eafd61f.tar.zst
nixpkgs-2d6f1ff4dd2ce208fce624466b4eeae54eafd61f.zip
python: Add support for installing Python eggs
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/python.section.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index 9cb0e1eecc1..41a5dae8b9b 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -821,6 +821,9 @@ should be used with `ignoreCollisions = true`.
 The following are setup hooks specifically for Python packages. Most of these are
 used in `buildPythonPackage`.
 
+- `eggUnpackhook` to move an egg to the correct folder so it can be installed with the `eggInstallHook`
+- `eggBuildHook` to skip building for eggs.
+- `eggInstallHook` to install eggs.
 - `flitBuildHook` to build a wheel using `flit`.
 - `pipBuildHook` to build a wheel using `pip` and PEP 517. Note a build system (e.g. `setuptools` or `flit`) should still be added as `nativeBuildInput`.
 - `pipInstallHook` to install wheels.