added system_tests

This commit is contained in:
2025-10-28 19:30:27 -04:00
parent 04c41c6ac0
commit d040b06869
5 changed files with 187 additions and 1 deletions

23
python/default.nix Normal file
View File

@@ -0,0 +1,23 @@
{ 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
]
)
];
}