mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
19 lines
385 B
Nix
19 lines
385 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
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
|
|
]))
|
|
];
|
|
}
|