diff options
-rw-r--r-- | contrib/flake.nix | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/contrib/flake.nix b/contrib/flake.nix index 68793f6823..e4242586fc 100644 --- a/contrib/flake.nix +++ b/contrib/flake.nix @@ -62,7 +62,6 @@ pythonEnv = pkgs.python3.withPackages (ps: [ ps.msgpack - ps.flake8 # for 'make pylint' ]); in { packages = with pkgs; { @@ -71,11 +70,6 @@ }; checks = { - pylint = pkgs.runCommand "pylint" { - nativeBuildInputs = [ pythonEnv ]; - preferLocalBuild = true; - } "make -C ${./..} pylint > $out"; - shlint = pkgs.runCommand "shlint" { nativeBuildInputs = [ pkgs.shellcheck ]; preferLocalBuild = true; |