Skip to content
Snippets Groups Projects
Commit 62b6f95c authored by yago yudi's avatar yago yudi
Browse files

Adiciona shell.nix

parent fcd319c7
No related branches found
No related tags found
No related merge requests found
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell rec {
buildInputs = [
pkgs.python311
pkgs.pipenv
];
shellHook = ''
export PIPENV_VENV_IN_PROJECT=1 # Cria o ambiente virtual dentro do projeto
export PIPENV_IGNORE_VIRTUALENVS=1 # Ignora ambientes virtuais preexistentes
echo "Ambiente configurado com Pipenv e Python 3.11!"
'';
}
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