From 9e04649e89ef4f596596d8fc826243bd0ff09207 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Mon, 2 May 2022 09:47:59 +0200 Subject: [PATCH] Add shell for ST project --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 1eebfef3..2e4b7840 100644 --- a/flake.nix +++ b/flake.nix @@ -175,6 +175,10 @@ }) ]; }; + scriptingtalen-project = pkgs.devshell.mkShell { + name = "Scriptingtalen project"; + packages = [ (pkgs.python3.withPackages (ps: with ps; [ beautifulsoup4 requests ])) ]; + }; }; }; };