mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
23 lines
351 B
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
|
|
]
|
|
))
|
|
];
|
|
}
|