added my_python pkgs

This commit is contained in:
2025-10-28 21:08:01 -04:00
parent 8142582e4a
commit d2db0de371
5 changed files with 32 additions and 24 deletions

View File

@@ -14,4 +14,24 @@
config.allowUnfree = true;
};
};
python-env = final: _prev: {
my_python = final.python313.withPackages (
ps: with ps; [
apprise
apscheduler
mypy
polars
pyfakefs
pytest
pytest-cov
pytest-mock
pytest-xdist
requests
ruff
typer
types-requests
]
);
};
}