start bottle project and dev environment

This commit is contained in:
fleaz 2024-10-16 20:53:38 +02:00
parent 0cdf33f26f
commit 60e79f06e3
5 changed files with 69 additions and 0 deletions

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
python3
poetry
python3Packages.pip
python3Packages.setuptools
];
}