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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -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;