Files
dibbler/nix/shell.nix
h7x4 4289d63ac9
All checks were successful
Run tests / run-tests (push) Successful in 45s
fixup! .gitea/workflows: init test pipeline
2025-12-08 21:28:01 +09:00

25 lines
274 B
Nix

{
mkShell,
python,
ruff,
uv,
}:
mkShell {
packages = [
ruff
uv
(python.withPackages (ps: with ps; [
brother-ql
matplotlib
psycopg2
python-barcode
sqlalchemy
pytest
pytest-cov
pytest-html
]))
];
}