mirror of
https://github.com/malmeloo/FindMy.py.git
synced 2026-04-18 04:53:57 +02:00
14 lines
191 B
Nix
14 lines
191 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
python312
|
|
poetry
|
|
];
|
|
|
|
shellHook = ''
|
|
if [[ -d .venv/ ]]; then
|
|
source .venv/bin/activate
|
|
fi
|
|
'';
|
|
} |