mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 03:56:01 +01:00
Use python3 packages in deps
To be consistent with the sample that uses the packages directly in inline shebang.
This commit is contained in:
parent
155411397d
commit
aff7facdf6
1 changed files with 1 additions and 1 deletions
|
|
@ -316,7 +316,7 @@ contains:
|
||||||
```nix
|
```nix
|
||||||
with import <nixpkgs> {};
|
with import <nixpkgs> {};
|
||||||
|
|
||||||
runCommand "dummy" { buildInputs = [ python pythonPackages.prettytable ]; } ""
|
runCommand "dummy" { buildInputs = [ python3 python3Packages.prettytable ]; } ""
|
||||||
```
|
```
|
||||||
|
|
||||||
The script's file name is passed as the first argument to the interpreter specified by the `-i` flag.
|
The script's file name is passed as the first argument to the interpreter specified by the `-i` flag.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue