mirror of
https://github.com/MagicBOTAlex/nixos-server.git
synced 2025-09-04 21:06:52 +02:00
13 lines
242 B
Nix
13 lines
242 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
# ...
|
|
(python3.withPackages (python-pkgs: with python-pkgs; [
|
|
pandas
|
|
requests
|
|
spotipy
|
|
python-dotenv
|
|
fastapi
|
|
uvicorn
|
|
]))
|
|
];
|
|
}
|