summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2017-08-06 10:18:36 +0200
committerSilvan Mosberger <infinisil@icloud.com>2017-08-06 10:18:36 +0200
commitdcf651b468fc960d381033743302c1ddcd85a826 (patch)
tree596ae494bc970ba52ae50a8480f36fa07c60cead /doc
parente619ace733fee725da5a1b84e5cce68d610ba35e (diff)
downloadnixpkgs-dcf651b468fc960d381033743302c1ddcd85a826.tar
nixpkgs-dcf651b468fc960d381033743302c1ddcd85a826.tar.gz
nixpkgs-dcf651b468fc960d381033743302c1ddcd85a826.tar.bz2
nixpkgs-dcf651b468fc960d381033743302c1ddcd85a826.tar.lz
nixpkgs-dcf651b468fc960d381033743302c1ddcd85a826.tar.xz
nixpkgs-dcf651b468fc960d381033743302c1ddcd85a826.tar.zst
nixpkgs-dcf651b468fc960d381033743302c1ddcd85a826.zip
docs: fix error in nix expression
Diffstat (limited to 'doc')
-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 3c9df2e6e82..6f09962094d 100644
--- a/doc/languages-frameworks/python.md
+++ b/doc/languages-frameworks/python.md
@@ -340,7 +340,7 @@ other packages we like to have in the environment, all specified with `propagate
 Indeed, we can just add any package we like to have in our environment to `propagatedBuildInputs`.
 
 ```nix
-with import <nixpkgs>;
+with import <nixpkgs> {};
 with pkgs.python35Packages;
 
 buildPythonPackage rec {