Files
dibbler/nix/shell.nix

21 lines
231 B
Nix

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