Files
dibbler/nix/shell.nix
h7x4 7f4a980eef
All checks were successful
Run tests / run-tests (push) Successful in 1m25s
fixup! WIP
2025-12-10 11:39:30 +09:00

26 lines
291 B
Nix

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