Initial script, ugly but functional
This commit is contained in:
commit
881aeaab5d
2 changed files with 81 additions and 0 deletions
11
shell.nix
Normal file
11
shell.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
let
|
||||
pkgs = import <nixpkgs> {};
|
||||
python3Packages = pkgs.python3Packages;
|
||||
in
|
||||
pkgs.mkShell {
|
||||
packages = [
|
||||
(pkgs.python3.withPackages (pythonPackages: with python3Packages; [
|
||||
pypdf
|
||||
]))
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue