]> git.scottworley.com Git - pinch/blame - shell.nix
Set git user in test harness
[pinch] / shell.nix
CommitLineData
4bc82b98
SW
1{ pkgs ? import <nixpkgs> { } }:
2pkgs.mkShell rec {
3 doCheck = true;
3603dde2 4 buildInputs = with pkgs; [ python3 ];
4bc82b98
SW
5 checkInputs = with pkgs; [
6 mypy
7 python3Packages.autopep8
8 python3Packages.pylint
9 ];
10}