3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/cx_freeze/default.nix

30 lines
837 B
Nix
Raw Normal View History

2020-09-11 12:44:30 +01:00
{ stdenv, buildPythonPackage, pythonOlder, fetchPypi, ncurses }:
2017-09-15 01:30:08 +01:00
buildPythonPackage rec {
pname = "cx_Freeze";
2020-08-16 18:30:56 +01:00
version = "6.2";
2017-09-15 01:30:08 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:30:56 +01:00
sha256 = "44bbbcea3196b79da77cc22637cb28a825b51182d32209e8a3f6cd4042edc247";
2017-09-15 01:30:08 +01:00
};
2020-09-11 12:44:30 +01:00
disabled = pythonOlder "3.5";
2017-09-15 01:30:08 +01:00
propagatedBuildInputs = [ 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 stdenv.lib; {
description = "A set of scripts and modules for freezing Python scripts into executables";
homepage = "http://cx-freeze.sourceforge.net/";
license = licenses.psfl;
};
}