From: Scott Worley Date: Sat, 23 May 2020 00:07:01 +0000 (-0700) Subject: shell.nix X-Git-Tag: 1.3~12 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/4bc82b98659d9222b1a2b25d472f0e5923a0ed52?hp=db3da89c7a9f14eec5aa400acfd3c888daca8385 shell.nix --- diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..b408ea4 --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import { } }: +pkgs.mkShell rec { + doCheck = true; + buildInputs = with pkgs; [ python3 ]; + checkInputs = with pkgs; [ + mypy + python3Packages.autopep8 + python3Packages.pylint + ]; +}