nix-direnv/shell.nix
Jörg Thalheim 748988f4b9
rewrite tests using pytest
this allows us to use fixtures that are more flexible
2022-06-01 08:20:43 +02:00

13 lines
204 B
Nix

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