Files
dotfiles/python/default.nix
2025-10-31 22:37:54 -04:00

24 lines
359 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
python313.withPackages
(
ps: with ps; [
apprise
apscheduler
mypy
polars
pyfakefs
pytest
pytest-cov
pytest-mock
pytest-xdist
requests
ruff
typer
types-requests
]
)
];
}