2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
pythonOlder,
|
|
|
|
ncurses,
|
|
|
|
importlib-metadata,
|
|
|
|
setuptools,
|
|
|
|
wheel,
|
|
|
|
patchelf,
|
2023-05-24 13:37:59 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2022-09-30 11:47:45 +00:00
|
|
|
pname = "cx-freeze";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "6.15.16";
|
2024-01-13 08:15:51 +00:00
|
|
|
pyproject = true;
|
2023-08-10 07:59:29 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2022-09-30 11:47:45 +00:00
|
|
|
pname = "cx_Freeze";
|
|
|
|
inherit version;
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-xjmRiG/ypTGfjw0HwDSaa74aZbXzIPi5JDiI5jyaSiI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-08-10 07:59:29 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
wheel
|
|
|
|
];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2020-12-07 07:45:13 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
importlib-metadata # upstream has this for 3.8 as well
|
|
|
|
ncurses
|
2023-05-24 13:37:59 +00:00
|
|
|
setuptools
|
2020-12-07 07:45:13 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
postPatch = ''
|
2023-05-24 13:37:59 +00:00
|
|
|
# timestamp need to come after 1980 for zipfiles and nix store is set to epoch
|
2024-01-13 08:15:51 +00:00
|
|
|
substituteInPlace cx_Freeze/freezer.py \
|
|
|
|
--replace "st.st_mtime" "time.time()"
|
2022-09-30 11:47:45 +00:00
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
sed -i /patchelf/d pyproject.toml
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
makeWrapperArgs = [
|
|
|
|
"--prefix"
|
|
|
|
"PATH"
|
|
|
|
":"
|
|
|
|
(lib.makeBinPath [ patchelf ])
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
# fails to find Console even though it exists on python 3.x
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A set of scripts and modules for freezing Python scripts into executables";
|
2022-01-19 23:45:15 +00:00
|
|
|
homepage = "https://marcelotduarte.github.io/cx_Freeze/";
|
2023-11-16 04:20:00 +00:00
|
|
|
changelog = "https://github.com/marcelotduarte/cx_Freeze/releases/tag/${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.psfl;
|
2023-05-24 13:37:59 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
mainProgram = "cxfreeze";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|