From f015305e7ca0daf628c4ef847d8296d0db8dbb3a Mon Sep 17 00:00:00 2001 From: benex Date: Sun, 17 Nov 2024 14:27:32 +0300 Subject: [PATCH] chore: add shell.nix --- shell.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..fb0a86b --- /dev/null +++ b/shell.nix @@ -0,0 +1,18 @@ +let + pkgs = import {}; +in pkgs.mkShell { + packages = [ + (pkgs.python3.withPackages (python-pkgs: [ + python-pkgs.yt-dlp + python-pkgs.dbus-python + python-pkgs.requests + python-pkgs.rich + python-pkgs.click + python-pkgs.inquirerpy + python-pkgs.mpv + python-pkgs.fastapi + python-pkgs.thefuzz + python-pkgs.plyer + ])) + ]; +}