2022-06-16 17:23:12 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cx_Freeze";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "6.11.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-jzowyeM5TykGVeNG07RgkQZWswrGNHqHSZu1rTZcbnw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
2020-12-07 07:45:13 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
importlib-metadata # upstream has this for 3.8 as well
|
|
|
|
ncurses
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# timestamp need to come after 1980 for zipfiles and nix store is set to epoch
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace cx_Freeze/freezer.py --replace "os.stat(module.file).st_mtime" "time.time()"
|
|
|
|
'';
|
|
|
|
|
|
|
|
# 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; {
|
2022-06-16 17:23:12 +00:00
|
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
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/";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.psfl;
|
|
|
|
};
|
|
|
|
}
|