Re-add scriptingtalen project shell

This commit is contained in:
Charlotte Van Petegem 2022-06-30 10:49:24 +02:00
parent 68f850d5e1
commit 583ec5cae2
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -0,0 +1,4 @@
{ pkgs, ... }: pkgs.devshell.mkShell {
name = "Scriptingtalen project";
packages = with pkgs; [ (python3.withPackages (ps: with ps; [ beautifulsoup4 requests ])) ];
}