21 lines
318 B
Nix
21 lines
318 B
Nix
{ pkgs, ... }:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
(python3.withPackages (
|
|
python-pkgs: with python-pkgs; [
|
|
pip
|
|
numpy
|
|
pandas
|
|
python-dotenv
|
|
requests
|
|
]
|
|
))
|
|
];
|
|
|
|
shellHook = ''
|
|
export P10K_EXTRA_RIGHT_PROMPT_ELEMENTS=(
|
|
virtualenv
|
|
)
|
|
'';
|
|
}
|