shell.nix: add python with all packages
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
devShells = forAllSystems (system: pkgs: {
|
||||
default = self.devShells.${system}.dibbler;
|
||||
dibbler = pkgs.callPackage ./nix/shell.nix {
|
||||
python3Packages = pkgs.python312Packages;
|
||||
python = pkgs.python312;
|
||||
};
|
||||
});
|
||||
|
||||
|
@@ -1,12 +1,18 @@
|
||||
{
|
||||
mkShell,
|
||||
python3Packages,
|
||||
python,
|
||||
ruff,
|
||||
}:
|
||||
|
||||
mkShell {
|
||||
packages = [
|
||||
python3Packages.black
|
||||
ruff
|
||||
(python.withPackages (ps: with ps; [
|
||||
brother-ql
|
||||
matplotlib
|
||||
psycopg2
|
||||
python-barcode
|
||||
sqlalchemy
|
||||
]))
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user