From 4f23616c446ee91620ef5eb412d4adbae427536f Mon Sep 17 00:00:00 2001
From: Guilhem Saurel <guilhem.saurel@laas.fr>
Date: Wed, 26 Jun 2024 09:52:18 +0200
Subject: [PATCH] flake: add python deps

---
 flake.nix | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/flake.nix b/flake.nix
index f435101..87174cf 100644
--- a/flake.nix
+++ b/flake.nix
@@ -26,7 +26,22 @@
       perSystem =
         { config, pkgs, ... }:
         {
-          devShells.default = pkgs.mkShell { nativeBuildInputs = [ config.treefmt.build.wrapper ]; };
+          devShells.default = pkgs.mkShell {
+            nativeBuildInputs = [ config.treefmt.build.wrapper ];
+            packages = with pkgs; [
+              (python3.withPackages (
+                p: with p; [
+                  beautifulsoup4
+                  ldap3
+                  numpy
+                  pandas
+                  requests
+                  tabulate
+                  wand
+                ]
+              ))
+            ];
+          };
           treefmt = {
             projectRootFile = "flake.nix";
             programs = {
-- 
GitLab