Files
dibbler/nix/shell.nix

19 lines
212 B
Nix

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