From 224ca9d099da5edc0a52f4f8d0df0572ef9166a0 Mon Sep 17 00:00:00 2001 From: randomuser Date: Sun, 24 Mar 2024 18:06:46 -0500 Subject: [PATCH] add a shell.nix --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..aead6a0 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import {} }: +let + my-python-packages = ps: with ps; [ + requests + gitpython + github3_py + ]; + my-python = pkgs.python3.withPackages my-python-packages; +in my-python.env