summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-12-08 17:05:19 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-12-08 17:05:19 +0100
commitaa2326682c7210027747a2b5ee7f33311dc8fe10 (patch)
treec93a29feacf866420c3b17c2f4ec15ec2783bd16 /doc/languages-frameworks
parent0e58684c41bdc7acab4fa9f9015389b55c2d43f5 (diff)
downloadnixlib-aa2326682c7210027747a2b5ee7f33311dc8fe10.tar
nixlib-aa2326682c7210027747a2b5ee7f33311dc8fe10.tar.gz
nixlib-aa2326682c7210027747a2b5ee7f33311dc8fe10.tar.bz2
nixlib-aa2326682c7210027747a2b5ee7f33311dc8fe10.tar.lz
nixlib-aa2326682c7210027747a2b5ee7f33311dc8fe10.tar.xz
nixlib-aa2326682c7210027747a2b5ee7f33311dc8fe10.tar.zst
nixlib-aa2326682c7210027747a2b5ee7f33311dc8fe10.zip
Python docs: fix nix-shell example
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/python.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md
index 9172d7122139..1398959671a2 100644
--- a/doc/languages-frameworks/python.md
+++ b/doc/languages-frameworks/python.md
@@ -134,7 +134,7 @@ with
 ```nix
 with import <nixpkgs> {};
 
-python35.withPackages (ps: [ps.numpy ps.toolz])
+python35.withPackages (ps: [ps.numpy ps.toolz]).nix
 ```
 Executing `nix-shell` gives you again a Nix shell from which you can run Python.