nix-direnv/shell.nix
2023-11-29 07:34:23 +01:00

14 lines
214 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
nativeBuildInputs = [
python3.pkgs.pytest
python3.pkgs.mypy
python3.pkgs.black
python3.pkgs.flake8
ruff
shellcheck
direnv
];
}