nixpkgs/pkgs/development/python-modules/cx_freeze/default.nix

33 lines
914 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, pythonOlder, fetchPypi, ncurses, importlib-metadata }:
2017-09-15 01:30:08 +01:00
buildPythonPackage rec {
pname = "cx_Freeze";
version = "6.4.2";
2017-09-15 01:30:08 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "fe0af7c658442402bcd209f993219a6ab98a951459495b4a141eb03b552a1c68";
2017-09-15 01:30:08 +01:00
};
2020-09-11 12:44:30 +01:00
disabled = pythonOlder "3.5";
2020-11-29 18:34:00 +00:00
propagatedBuildInputs = [
importlib-metadata # upstream has this for 3.8 as well
ncurses
];
2017-09-15 01:30:08 +01: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;
meta = with lib; {
2017-09-15 01:30:08 +01:00
description = "A set of scripts and modules for freezing Python scripts into executables";
homepage = "http://cx-freeze.sourceforge.net/";
license = licenses.psfl;
};
}