Files
dibbler/nix/shell.nix

24 lines
256 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
]))
];
}