X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/db3da89c7a9f14eec5aa400acfd3c888daca8385..4bc82b98659d9222b1a2b25d472f0e5923a0ed52:/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 + ]; +}