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-12-26 17:43:05 +00:00
|
|
|
version = "6.8.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-26 17:43:05 +00:00
|
|
|
sha256 = "05e7a2b099d4eb36e74116311b693dcc3103763aee92ef32079be0b6d4832fa0";
|
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;
|
|
|
|
};
|
|
|
|
}
|