You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
272 B
Fish
12 lines
272 B
Fish
5 years ago
|
function pythonEnv --description 'start a nix-shell with the given python packages' --argument pythonVersion
|
||
|
if set -q argv[2]
|
||
|
set argv $argv[2..-1]
|
||
|
end
|
||
|
|
||
|
for el in $argv
|
||
|
set ppkgs $ppkgs "python"$pythonVersion"Packages.$el"
|
||
|
end
|
||
|
|
||
|
nix-shell -p $ppkgs
|
||
|
end
|