diff --git a/pkgs/development/python-modules/pyinstaller/default.nix b/pkgs/development/python-modules/pyinstaller/default.nix index 943a48d843a0..36ce797b959f 100644 --- a/pkgs/development/python-modules/pyinstaller/default.nix +++ b/pkgs/development/python-modules/pyinstaller/default.nix @@ -1,19 +1,19 @@ { - lib -, buildPythonPackage -, fetchPypi -, setuptools -, zlib -, altgraph -, packaging -, pyinstaller-hooks-contrib -, testers -, pyinstaller -, glibc -, binutils -, macholib -, installShellFiles -, stdenv + lib, + buildPythonPackage, + fetchPypi, + setuptools, + zlib, + altgraph, + packaging, + pyinstaller-hooks-contrib, + testers, + pyinstaller, + glibc, + binutils, + macholib, + installShellFiles, + stdenv, }: buildPythonPackage rec { @@ -26,7 +26,6 @@ buildPythonPackage rec { hash = "sha256-FDhA+AVv97kQv48W9s2SzBCmwmgLt20KJdVY1UPSEnA="; }; - build-system = [ setuptools ]; nativeBuildInputs = [ installShellFiles ]; @@ -41,7 +40,13 @@ buildPythonPackage rec { ]; makeWrapperArgs = lib.optionals stdenv.hostPlatform.isLinux [ - "--prefix" "PATH" ":" (lib.makeBinPath [ glibc binutils ]) + "--prefix" + "PATH" + ":" + (lib.makeBinPath [ + glibc + binutils + ]) ]; postInstall = ''