1
0
adaptation-slr/cites/shell.nix

17 lines
271 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
name = "trial-env";
packages = with pkgs; [
pkgs.python312
pkgs.python312Packages.bibtexparser
pkgs.python312Packages.tqdm
git
];
shellHook = ''
echo "trying to find a good quote for here"
'';
}