2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cx_Freeze";
|
2021-10-01 09:20:50 +00:00
|
|
|
version = "6.8.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-01 09:20:50 +00:00
|
|
|
sha256 = "3f16d3d40f7f2e1f6032132170d8fd4ba2f4f9ea419f13d7a68091bbe1949583";
|
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; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A set of scripts and modules for freezing Python scripts into executables";
|
|
|
|
homepage = "http://cx-freeze.sourceforge.net/";
|
|
|
|
license = licenses.psfl;
|
|
|
|
};
|
|
|
|
}
|