commit 86a75c79e1c0c4e78a7e8cfca5e94207a43db672
parent e6cae44cbf44d623bc89eb3323da043249c0f052
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date: Wed, 28 Dec 2022 17:20:23 +0100
build(nix): remove pylint as it has been removed (#21572)
Diffstat:
1 file changed, 0 insertions(+), 6 deletions(-)
diff --git 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;