nix-direnv/shell.nix
2023-12-03 11:04:14 +00:00

11 lines
152 B
Nix

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