Skip to content
Snippets Groups Projects
Commit 4f23616c authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

flake: add python deps

parent fb761c16
No related branches found
No related tags found
No related merge requests found
......@@ -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 = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment