Revert "Python docs: fix nix-shell example"

This reverts commit aa2326682c.

Forgot parentheses...
This commit is contained in:
Frederik Rietdijk 2017-12-08 17:06:03 +01:00
parent aa2326682c
commit 19be72f880

View file

@ -134,7 +134,7 @@ with
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> {};
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. Executing `nix-shell` gives you again a Nix shell from which you can run Python.