diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-12-28 17:20:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-28 17:20:23 +0100 |
commit | 86a75c79e1c0c4e78a7e8cfca5e94207a43db672 (patch) | |
tree | c704423fdd5a0a85b9146ff5773a433bade3657d | |
parent | e6cae44cbf44d623bc89eb3323da043249c0f052 (diff) | |
download | rneovim-86a75c79e1c0c4e78a7e8cfca5e94207a43db672.tar.gz rneovim-86a75c79e1c0c4e78a7e8cfca5e94207a43db672.tar.bz2 rneovim-86a75c79e1c0c4e78a7e8cfca5e94207a43db672.zip |
build(nix): remove pylint as it has been removed (#21572)
-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; |