summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/mk-python-derivation.nix
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2020-09-16 11:22:27 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-09-16 17:38:41 +0200
commit60df61b67e28cf02424cbebac5303d8254bc6a21 (patch)
tree9e5b96967b6e304c711f70fce6d10565bf559414 /pkgs/development/interpreters/python/mk-python-derivation.nix
parentdb645087797f49dafccdd08babbbfd015bf8b8b6 (diff)
downloadnixpkgs-60df61b67e28cf02424cbebac5303d8254bc6a21.tar
nixpkgs-60df61b67e28cf02424cbebac5303d8254bc6a21.tar.gz
nixpkgs-60df61b67e28cf02424cbebac5303d8254bc6a21.tar.bz2
nixpkgs-60df61b67e28cf02424cbebac5303d8254bc6a21.tar.lz
nixpkgs-60df61b67e28cf02424cbebac5303d8254bc6a21.tar.xz
nixpkgs-60df61b67e28cf02424cbebac5303d8254bc6a21.tar.zst
nixpkgs-60df61b67e28cf02424cbebac5303d8254bc6a21.zip
mk-python-derivation: document pyproject format
Optional setting of format == "pyproject", "egg" had been documented
in the manual, but they weren't listed in the function header for
``mk-python-derivation.nix``.
Diffstat (limited to 'pkgs/development/interpreters/python/mk-python-derivation.nix')
-rw-r--r--pkgs/development/interpreters/python/mk-python-derivation.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/python/mk-python-derivation.nix b/pkgs/development/interpreters/python/mk-python-derivation.nix
index df945c645a8..c3be76790eb 100644
--- a/pkgs/development/interpreters/python/mk-python-derivation.nix
+++ b/pkgs/development/interpreters/python/mk-python-derivation.nix
@@ -81,6 +81,8 @@
 # "setuptools" : Install a common setuptools/distutils based package. This builds a wheel.
 # "wheel" : Install from a pre-compiled wheel.
 # "flit" : Install a flit package. This builds a wheel.
+# "pyproject": Install a package using a ``pyproject.toml`` file (PEP517). This builds a wheel.
+# "egg": Install a package from an egg.
 # "other" : Provide your own buildPhase and installPhase.
 , format ? "setuptools"