From 86a75c79e1c0c4e78a7e8cfca5e94207a43db672 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Wed, 28 Dec 2022 17:20:23 +0100 Subject: [PATCH] build(nix): remove pylint as it has been removed (#21572) --- contrib/flake.nix | 6 ------ 1 file changed, 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;