]> git.scottworley.com Git - pinch/blame - shell.nix
Use separate cache dir for test isolation
[pinch] / shell.nix
CommitLineData
4bc82b98
SW
1{ pkgs ? import <nixpkgs> { } }:
2pkgs.mkShell rec {
3 doCheck = true;
26125a28 4 buildInputs = with pkgs; [ (python3.withPackages (ps: with ps; [ xdg ])) ];
4bc82b98
SW
5 checkInputs = with pkgs; [
6 mypy
7 python3Packages.autopep8
8 python3Packages.pylint
9 ];
10}