0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python312Packages.pyinstaller: reformat

This commit is contained in:
Martin Weinelt 2024-11-05 23:34:47 +01:00
parent 3854d6430b
commit 6ac5588872
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -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 = ''