From 307c22d4a2f57ffeed988a8f63a0b1ca9ff11534 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Thu, 23 Jun 2022 17:03:28 +0200 Subject: [PATCH] Python deps for ogprog project --- shells/objectgericht-project.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shells/objectgericht-project.nix b/shells/objectgericht-project.nix index c28fb724..620b0775 100644 --- a/shells/objectgericht-project.nix +++ b/shells/objectgericht-project.nix @@ -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 ])) ]; }