mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
python312Packages.pyinstaller: 6.10.0 -> 6.11.0
https://pyinstaller.org/en/v6.11.0/CHANGES.html
This commit is contained in:
parent
6ac5588872
commit
16aaf3b433
@ -1,35 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
|
||||
# native dependencies
|
||||
zlib,
|
||||
|
||||
# dependencies
|
||||
altgraph,
|
||||
macholib,
|
||||
packaging,
|
||||
pyinstaller-hooks-contrib,
|
||||
testers,
|
||||
pyinstaller,
|
||||
glibc,
|
||||
|
||||
# tests
|
||||
binutils,
|
||||
macholib,
|
||||
installShellFiles,
|
||||
stdenv,
|
||||
glibc,
|
||||
pyinstaller,
|
||||
testers,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyinstaller";
|
||||
version = "6.10.0";
|
||||
version = "6.11.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-FDhA+AVv97kQv48W9s2SzBCmwmgLt20KJdVY1UPSEnA=";
|
||||
hash = "sha256-y01DOj2zDZ0Xz18s97tN+Ap4jUk8HWfdgi3FeR2YZK8=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
buildInputs = [ zlib.dev ];
|
||||
|
||||
dependencies = [
|
||||
@ -49,10 +54,6 @@ buildPythonPackage rec {
|
||||
])
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
installManPage doc/pyinstaller.1 doc/pyi-makespec.1
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "PyInstaller" ];
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
|
Loading…
Reference in New Issue
Block a user