treewide: makeWrapper buildInputs to nativeBuildInputs

This commit is contained in:
Ben Siraphob
2021-02-19 20:09:16 +07:00
parent 06c2bba257
commit e03c068af5
332 changed files with 532 additions and 391 deletions
@@ -9,7 +9,8 @@ let self = stdenv.mkDerivation rec {
rev = "version-${version}";
sha256 = "1pccvc0iqapms7kidrh09g5fdx44x622r5l9k7bkmssp3v4c68vy";
};
buildInputs = [ python3 mypy makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python3 mypy ];
checkPhase = ''
mypy bin/*
'';