diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..ac5f84b --- /dev/null +++ b/shell.nix @@ -0,0 +1,17 @@ +{ pkgs ? import {} }: + +with pkgs; +let + my-python-packages = python-packages: with python-packages; [ + virtualenv + pytest + ]; + my-python = python3.withPackages my-python-packages; +in mkShell { + buildInputs = [ + vscodium + rustup + nodejs + my-python + ]; +}