From 19be72f8800b90d9038bac2d3d4e0188ab694bb1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 8 Dec 2017 17:06:03 +0100 Subject: [PATCH] Revert "Python docs: fix nix-shell example" This reverts commit aa2326682c7210027747a2b5ee7f33311dc8fe10. Forgot parentheses... --- doc/languages-frameworks/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md index 1398959671a..9172d712213 100644 --- a/doc/languages-frameworks/python.md +++ b/doc/languages-frameworks/python.md @@ -134,7 +134,7 @@ with ```nix with import {}; -python35.withPackages (ps: [ps.numpy ps.toolz]).nix +python35.withPackages (ps: [ps.numpy ps.toolz]) ``` Executing `nix-shell` gives you again a Nix shell from which you can run Python.