Files
dibbler/nix/shell.nix
h7x4 e80cdabe2a
Some checks failed
Run benchmarks / run-tests (push) Failing after 24s
Run tests / run-tests (push) Failing after 43s
Add benchmarks
2026-01-06 17:49:12 +09:00

28 lines
326 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
pytest-benchmark
pygal
]))
];
}