nix-pin: remove mypy linter

This commit is contained in:
Sandro Jäckel 2023-06-07 14:16:07 +02:00 committed by Gaetan Lepage
parent 06a75e548e
commit c53f3ee614

View file

@ -1,4 +1,4 @@
{ lib, pkgs, stdenv, fetchFromGitHub, mypy, python3, nix, git, makeWrapper { lib, pkgs, stdenv, fetchFromGitHub, python3, nix, git, makeWrapper
, runtimeShell }: , runtimeShell }:
let self = stdenv.mkDerivation rec { let self = stdenv.mkDerivation rec {
pname = "nix-pin"; pname = "nix-pin";
@ -10,10 +10,7 @@ let self = stdenv.mkDerivation rec {
sha256 = "1pccvc0iqapms7kidrh09g5fdx44x622r5l9k7bkmssp3v4c68vy"; sha256 = "1pccvc0iqapms7kidrh09g5fdx44x622r5l9k7bkmssp3v4c68vy";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python3 mypy ]; buildInputs = [ python3 ];
checkPhase = ''
mypy bin/*
'';
installPhase = '' installPhase = ''
mkdir "$out" mkdir "$out"
cp -r bin share "$out" cp -r bin share "$out"