commit 49d6fab7e2508a6581860b39dd8c0841a9209ff5 parent 6d25e883543c5016d08c28bc2f203b489c479083 Author: William Casarin <jb55@jb55.com> Date: Fri, 14 May 2021 10:37:11 -0700 skels: add nix-python Signed-off-by: William Casarin <jb55@jb55.com> Diffstat:
A | dotfiles/skeletons/nix-python/shell.nix | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/dotfiles/skeletons/nix-python/shell.nix b/dotfiles/skeletons/nix-python/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import <nixpkgs> {} }: +with pkgs; +mkShell { + buildInputs = with python3Packages; [ ]; +}