Initial script, ugly but functional

This commit is contained in:
Selene Corbineau 2026-05-28 09:49:42 +02:00
commit 881aeaab5d
2 changed files with 81 additions and 0 deletions

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
let
pkgs = import <nixpkgs> {};
python3Packages = pkgs.python3Packages;
in
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (pythonPackages: with python3Packages; [
pypdf
]))
];
}