add a shell.nix

This commit is contained in:
randomuser 2024-03-24 18:06:46 -05:00
parent 0f322fd358
commit 224ca9d099
1 changed files with 9 additions and 0 deletions

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
let
my-python-packages = ps: with ps; [
requests
gitpython
github3_py
];
my-python = pkgs.python3.withPackages my-python-packages;
in my-python.env