Files
dibbler/nix/shell.nix
h7x4 2444b99b02
Some checks failed
Run tests / run-tests (push) Successful in 2m7s
Run benchmarks / run-tests (push) Failing after 13m0s
Add benchmarks
2025-12-12 22:56:04 +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
]))
];
}