12 lines
297 B
Nix
12 lines
297 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
(pkgs.buildFHSUserEnv {
|
|
name = "venv";
|
|
targetPkgs = pkgs: (with pkgs; [
|
|
python312
|
|
python312Packages.pip
|
|
python312Packages.virtualenv
|
|
python312Packages.matplotlib
|
|
]);
|
|
runScript = "bash --init-file /etc/profile";
|
|
# runScript = "zsh";
|
|
}).env
|