mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python312Packages.pyinstaller: reformat
This commit is contained in:
parent
3854d6430b
commit
6ac5588872
1 changed files with 22 additions and 17 deletions
|
@ -1,19 +1,19 @@
|
||||||
{
|
{
|
||||||
lib
|
lib,
|
||||||
, buildPythonPackage
|
buildPythonPackage,
|
||||||
, fetchPypi
|
fetchPypi,
|
||||||
, setuptools
|
setuptools,
|
||||||
, zlib
|
zlib,
|
||||||
, altgraph
|
altgraph,
|
||||||
, packaging
|
packaging,
|
||||||
, pyinstaller-hooks-contrib
|
pyinstaller-hooks-contrib,
|
||||||
, testers
|
testers,
|
||||||
, pyinstaller
|
pyinstaller,
|
||||||
, glibc
|
glibc,
|
||||||
, binutils
|
binutils,
|
||||||
, macholib
|
macholib,
|
||||||
, installShellFiles
|
installShellFiles,
|
||||||
, stdenv
|
stdenv,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -26,7 +26,6 @@ buildPythonPackage rec {
|
||||||
hash = "sha256-FDhA+AVv97kQv48W9s2SzBCmwmgLt20KJdVY1UPSEnA=";
|
hash = "sha256-FDhA+AVv97kQv48W9s2SzBCmwmgLt20KJdVY1UPSEnA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
@ -41,7 +40,13 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
makeWrapperArgs = lib.optionals stdenv.hostPlatform.isLinux [
|
makeWrapperArgs = lib.optionals stdenv.hostPlatform.isLinux [
|
||||||
"--prefix" "PATH" ":" (lib.makeBinPath [ glibc binutils ])
|
"--prefix"
|
||||||
|
"PATH"
|
||||||
|
":"
|
||||||
|
(lib.makeBinPath [
|
||||||
|
glibc
|
||||||
|
binutils
|
||||||
|
])
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue