Files
dibbler/nix/shell.nix
h7x4 c7480c6392
Some checks failed
Run tests / run-tests (push) Successful in 2m2s
Run benchmarks / run-tests (push) Failing after 14m33s
flake.nix: bump python from 3.12 -> 3.13
2025-12-13 15:55:56 +09:00

28 lines
328 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
]))
];
}