c2ab1f2380
* python38Packages.cx_Freeze: 6.8.4 -> 6.9 (#154093) * pythonPackages.cx_Freeze: update meta.homepage Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
33 lines
922 B
Nix
33 lines
922 B
Nix
{ lib, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cx_Freeze";
|
|
version = "6.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "673aa3199af2ef87fc03a43a30e5d78b27ced2cedde925da89c55b5657da267b";
|
|
};
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
propagatedBuildInputs = [
|
|
importlib-metadata # upstream has this for 3.8 as well
|
|
ncurses
|
|
];
|
|
|
|
# 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;
|
|
|
|
meta = with lib; {
|
|
description = "A set of scripts and modules for freezing Python scripts into executables";
|
|
homepage = "https://marcelotduarte.github.io/cx_Freeze/";
|
|
license = licenses.psfl;
|
|
};
|
|
}
|