bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
ncurses,
|
|
importlib-metadata,
|
|
setuptools,
|
|
wheel,
|
|
patchelf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cx-freeze";
|
|
version = "6.15.16";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "cx_Freeze";
|
|
inherit version;
|
|
hash = "sha256-xjmRiG/ypTGfjw0HwDSaa74aZbXzIPi5JDiI5jyaSiI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
importlib-metadata # upstream has this for 3.8 as well
|
|
ncurses
|
|
setuptools
|
|
];
|
|
|
|
postPatch = ''
|
|
# timestamp need to come after 1980 for zipfiles and nix store is set to epoch
|
|
substituteInPlace cx_Freeze/freezer.py \
|
|
--replace "st.st_mtime" "time.time()"
|
|
|
|
sed -i /patchelf/d pyproject.toml
|
|
'';
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix"
|
|
"PATH"
|
|
":"
|
|
(lib.makeBinPath [ patchelf ])
|
|
];
|
|
|
|
# fails to find Console even though it exists on python 3.x
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Set of scripts and modules for freezing Python scripts into executables";
|
|
homepage = "https://marcelotduarte.github.io/cx_Freeze/";
|
|
changelog = "https://github.com/marcelotduarte/cx_Freeze/releases/tag/${version}";
|
|
license = licenses.psfl;
|
|
maintainers = with maintainers; [ ];
|
|
mainProgram = "cxfreeze";
|
|
};
|
|
}
|