Python deps for ogprog project

This commit is contained in:
Charlotte Van Petegem 2022-06-23 17:03:28 +02:00
parent e828a643d8
commit 307c22d4a2
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: pkgs.devshell.mkShell {
name = "Objectgericht programmeren project";
packages = with pkgs; [ openssl maven openjdk ];
packages = with pkgs; [ openssl maven openjdk (python3.withPackages (ps: with ps; [ beautifulsoup4 notmuch pyyaml ])) ];
}