build(nix): remove pylint as it has been removed (#21572)

This commit is contained in:
dundargoc
2022-12-28 17:20:23 +01:00
committed by GitHub
parent e6cae44cbf
commit 86a75c79e1

View File

@@ -62,7 +62,6 @@
pythonEnv = pkgs.python3.withPackages (ps: [ pythonEnv = pkgs.python3.withPackages (ps: [
ps.msgpack ps.msgpack
ps.flake8 # for 'make pylint'
]); ]);
in { in {
packages = with pkgs; { packages = with pkgs; {
@@ -71,11 +70,6 @@
}; };
checks = { checks = {
pylint = pkgs.runCommand "pylint" {
nativeBuildInputs = [ pythonEnv ];
preferLocalBuild = true;
} "make -C ${./..} pylint > $out";
shlint = pkgs.runCommand "shlint" { shlint = pkgs.runCommand "shlint" {
nativeBuildInputs = [ pkgs.shellcheck ]; nativeBuildInputs = [ pkgs.shellcheck ];
preferLocalBuild = true; preferLocalBuild = true;