Files
dotfiles/python/default.nix

23 lines
351 B
Nix

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