13 lines
236 B
Nix
13 lines
236 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
packages = [
|
|
(pkgs.python3.withPackages (python-pkgs: [
|
|
python-pkgs.pexpect
|
|
python-pkgs.icecream
|
|
python-pkgs.mypy
|
|
# python-pkgs.ruff
|
|
]))
|
|
pkgs.openssh
|
|
];
|
|
}
|