From 4bc82b98659d9222b1a2b25d472f0e5923a0ed52 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 22 May 2020 17:07:01 -0700 Subject: [PATCH] shell.nix --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 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 + ]; +} -- 2.44.1