mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-08 11:36:11 +01:00
11 lines
171 B
Nix
11 lines
171 B
Nix
{ pkgs ? import <nixpkgs> { }, packages ? [ ] }:
|
|
|
|
with pkgs;
|
|
mkShell {
|
|
packages = packages ++ [
|
|
python3.pkgs.pytest
|
|
python3.pkgs.mypy
|
|
ruff
|
|
direnv
|
|
];
|
|
}
|