Adds a devshell to template which includes poetry

This commit is contained in:
Larry May 2022-10-03 09:26:04 -04:00
parent 283b30a5c4
commit 46c475a6c4

View file

@ -30,5 +30,11 @@
}; };
defaultApp = pkgs.myapp; defaultApp = pkgs.myapp;
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
(python310.withPackages (ps: with ps; [ poetry ]))
];
};
})); }));
} }