159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
distutils,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
ncurses,
|
|
packaging,
|
|
setuptools,
|
|
filelock,
|
|
wheel,
|
|
patchelf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cx-freeze";
|
|
version = "7.2.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchPypi {
|
|
pname = "cx_freeze";
|
|
inherit version;
|
|
hash = "sha256-xX9xAbTTUTJGSx7IjLiUjDt8W07OS7NUwWCRWJyzNYM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i /patchelf/d pyproject.toml
|
|
# Build system requirements
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "setuptools>=65.6.3,<71" "setuptools" \
|
|
--replace-fail "wheel>=0.42.0,<=0.43.0" "wheel"
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
dependencies = [
|
|
distutils
|
|
filelock
|
|
packaging
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
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 = [ ];
|
|
mainProgram = "cxfreeze";
|
|
};
|
|
}
|